summaryrefslogtreecommitdiff
diff options
authorKristin Chuang <kristin.chuang@canonical.com>2021-03-04 11:20:03 +0800
committerKristin Chuang <kristin.chuang@canonical.com>2021-03-04 11:20:03 +0800
commite04fa52419a504b751153c542f4607615fd2ae8b (patch)
tree8308b67b83bfa8cff29bf03bdbc59b4f04836bc6
parentd83de07b2fdbe7dff2f7dbae3cde1708d5bc548c (diff)
fix model-brand check calling the wrong function
-rwxr-xr-xbin/ubuntucore_image_checks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ubuntucore_image_checks.py b/bin/ubuntucore_image_checks.py
index 214fc42..a7866dc 100755
--- a/bin/ubuntucore_image_checks.py
+++ b/bin/ubuntucore_image_checks.py
@@ -107,7 +107,7 @@ def main():
elif action == 'model-authority':
modelinfo.test_model_authority()
elif action == 'model-brand':
- modelinfo.test_model_authority()
+ modelinfo.test_model_brand()
else:
raise SystemExit('ERROR: unrecognised action')