diff options
Diffstat (limited to 'lib/python/qmk/info.py')
-rw-r--r-- | lib/python/qmk/info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/info.py b/lib/python/qmk/info.py index bcb4d81ef..7f9907a50 100644 --- a/lib/python/qmk/info.py +++ b/lib/python/qmk/info.py | |||
@@ -74,7 +74,7 @@ def info_json(keyboard): | |||
74 | except jsonschema.ValidationError as e: | 74 | except jsonschema.ValidationError as e: |
75 | json_path = '.'.join([str(p) for p in e.absolute_path]) | 75 | json_path = '.'.join([str(p) for p in e.absolute_path]) |
76 | cli.log.error('Invalid API data: %s: %s: %s', keyboard, json_path, e.message) | 76 | cli.log.error('Invalid API data: %s: %s: %s', keyboard, json_path, e.message) |
77 | exit() | 77 | exit(1) |
78 | 78 | ||
79 | # Make sure we have at least one layout | 79 | # Make sure we have at least one layout |
80 | if not info_data.get('layouts'): | 80 | if not info_data.get('layouts'): |