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) |
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 9e10570620..327bc9cb30 100755 --- a/lib/python/qmk/cli/doctor.py +++ b/lib/python/qmk/cli/doctor.py @@ -77,6 +77,7 @@ def doctor(cli): * [ ] Compile a trivial program with each compiler """ cli.log.info('QMK Doctor is checking your environment.') + cli.log.info('CLI version: %s', cli.version) cli.log.info('QMK home: {fg_cyan}%s', QMK_FIRMWARE) status = os_tests() |