diff options
author | Ryan <fauxpark@gmail.com> | 2020-10-07 10:46:10 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-06 16:46:10 -0700 |
commit | 2c9ffd47391b8dec98db94bef9b2f5c14a57cf94 (patch) | |
tree | 57f743159e972e3e2cd215ab256675d3c84d1832 /lib/python/qmk/cli/doctor.py | |
parent | 2013f6313430b977e557e482d30daa279a46e75d (diff) | |
download | qmk_firmware-2c9ffd47391b8dec98db94bef9b2f5c14a57cf94.tar.gz qmk_firmware-2c9ffd47391b8dec98db94bef9b2f5c14a57cf94.zip |
CLI: update subcommands to use return instead of exit() (#10323)
Diffstat (limited to 'lib/python/qmk/cli/doctor.py')
-rwxr-xr-x | lib/python/qmk/cli/doctor.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/python/qmk/cli/doctor.py b/lib/python/qmk/cli/doctor.py index bad864f72..984c308d1 100755 --- a/lib/python/qmk/cli/doctor.py +++ b/lib/python/qmk/cli/doctor.py | |||
@@ -364,3 +364,5 @@ def doctor(cli): | |||
364 | else: | 364 | else: |
365 | cli.log.info('{fg_yellow}Problems detected, please fix these problems before proceeding.') | 365 | cli.log.info('{fg_yellow}Problems detected, please fix these problems before proceeding.') |
366 | # FIXME(skullydazed/unclaimed): Link to a document about troubleshooting, or discord or something | 366 | # FIXME(skullydazed/unclaimed): Link to a document about troubleshooting, or discord or something |
367 | |||
368 | return ok | ||