summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYongqin Liu <yongqin.liu@linaro.org>2020-01-01 01:16:58 +0800
committerYongqin Liu <yongqin.liu@linaro.org>2020-01-01 01:16:58 +0800
commitd38f355822e3fadd6ebdc8603325bbd1cdc359f9 (patch)
treef589bcdd0193439e02a825e0ec1796d1c9746edb
parenta04ff51b6b2809046f74d56d265ee498af90ab23 (diff)
lkft/views.py: fix the typo error
Signed-off-by: Yongqin Liu <yongqin.liu@linaro.org>
-rw-r--r--lkft/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lkft/views.py b/lkft/views.py
index 0b2c7fd..5f4281a 100644
--- a/lkft/views.py
+++ b/lkft/views.py
@@ -1081,7 +1081,7 @@ def new_build(request, branch, describe, name, number):
number=number,
kernel_change=kernel_change)
kernel_change.reported = False
- kernel.save()
+ kernel_change.save()
except KernelChange.DoesNotExist:
err_msg = "The change for the specified kernel and describe does not exist: branch=%s, describe=%s" % (branch, describe)