diff options
author | Ryan <fauxpark@gmail.com> | 2021-06-27 13:21:53 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-27 13:21:53 +1000 |
commit | 53ace430fe2229111b57d76ddbc9130b6cbc0f2a (patch) | |
tree | 36dd32ee7154d46b3720a4a91a224df8f3a45784 /lib/python | |
parent | cbe761ea1628691c9ed7f93d06aab145fc2c9077 (diff) | |
download | qmk_firmware-53ace430fe2229111b57d76ddbc9130b6cbc0f2a.tar.gz qmk_firmware-53ace430fe2229111b57d76ddbc9130b6cbc0f2a.zip |
Doctor: print CLI version (#13356)
Diffstat (limited to 'lib/python')
-rwxr-xr-x | lib/python/qmk/cli/doctor.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/python/qmk/cli/doctor.py b/lib/python/qmk/cli/doctor.py index 9e1057062..327bc9cb3 100755 --- a/lib/python/qmk/cli/doctor.py +++ b/lib/python/qmk/cli/doctor.py | |||
@@ -77,6 +77,7 @@ def doctor(cli): | |||
77 | * [ ] Compile a trivial program with each compiler | 77 | * [ ] Compile a trivial program with each compiler |
78 | """ | 78 | """ |
79 | cli.log.info('QMK Doctor is checking your environment.') | 79 | cli.log.info('QMK Doctor is checking your environment.') |
80 | cli.log.info('CLI version: %s', cli.version) | ||
80 | cli.log.info('QMK home: {fg_cyan}%s', QMK_FIRMWARE) | 81 | cli.log.info('QMK home: {fg_cyan}%s', QMK_FIRMWARE) |
81 | 82 | ||
82 | status = os_tests() | 83 | status = os_tests() |