diff options
author | Kristin Chuang <kristin.chuang@canonical.com> | 2021-03-04 11:20:03 +0800 |
---|---|---|
committer | Kristin Chuang <kristin.chuang@canonical.com> | 2021-03-04 11:20:03 +0800 |
commit | e04fa52419a504b751153c542f4607615fd2ae8b (patch) | |
tree | 8308b67b83bfa8cff29bf03bdbc59b4f04836bc6 | |
parent | d83de07b2fdbe7dff2f7dbae3cde1708d5bc548c (diff) |
fix model-brand check calling the wrong function
-rwxr-xr-x | bin/ubuntucore_image_checks.py | 2 |
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') |