diff options
author | QMK Bot <hello@qmk.fm> | 2021-06-25 03:32:21 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2021-06-25 03:32:21 +0000 |
commit | 9d4412cb8bf9512952118b190fedea72e33d28cb (patch) | |
tree | 0aea9b18814025b73ddcc95d7d1fd7a1f33b5c06 /lib/python/qmk/cli | |
parent | 0412c92b68fbc3b3d3eefd44c1b04d05b47c826a (diff) | |
parent | 7c2bd4dd88d29958b7ecc281af463257cc63fd46 (diff) | |
download | qmk_firmware-9d4412cb8bf9512952118b190fedea72e33d28cb.tar.gz qmk_firmware-9d4412cb8bf9512952118b190fedea72e33d28cb.zip |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'lib/python/qmk/cli')
-rw-r--r-- | lib/python/qmk/cli/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/__init__.py b/lib/python/qmk/cli/__init__.py index 32da1a9b52..7f5e0a1fa6 100644 --- a/lib/python/qmk/cli/__init__.py +++ b/lib/python/qmk/cli/__init__.py @@ -22,6 +22,7 @@ safe_commands = [ # A list of subcommands we always run, even when the module imports fail 'clone', 'config', + 'doctor', 'env', 'setup', ] @@ -190,7 +191,7 @@ for subcommand in subcommands: try: __import__(subcommand) - except ModuleNotFoundError as e: + except (ImportError, ModuleNotFoundError) as e: if safe_command: print(f'Warning: Could not import {subcommand}: {e.__class__.__name__}, {e}') else: |