diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-04-14 10:58:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-14 16:58:00 +0200 |
commit | f9bb9ef0b81cbec4a4e05ce0fa5564ce9481c926 (patch) | |
tree | 8b6250f35f73338444c7d77da97700e20389b694 /lib/python/qmk/cli/doctor.py | |
parent | 3d9ffd3efb3fbc0662a912d57baf3ba6183c0ee8 (diff) | |
download | qmk_firmware-f9bb9ef0b81cbec4a4e05ce0fa5564ce9481c926.tar.gz qmk_firmware-f9bb9ef0b81cbec4a4e05ce0fa5564ce9481c926.zip |
CLI: Fix doctor error when can't run `bin/qmk --version`. (#8796)
Diffstat (limited to 'lib/python/qmk/cli/doctor.py')
-rwxr-xr-x | lib/python/qmk/cli/doctor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/doctor.py b/lib/python/qmk/cli/doctor.py index 3e6f6fe54..3c74fae69 100755 --- a/lib/python/qmk/cli/doctor.py +++ b/lib/python/qmk/cli/doctor.py | |||
@@ -191,7 +191,7 @@ def is_executable(command): | |||
191 | cli.log.debug('Found {fg_cyan}%s', command) | 191 | cli.log.debug('Found {fg_cyan}%s', command) |
192 | return True | 192 | return True |
193 | 193 | ||
194 | cli.log.error("{fg_red}Can't run `%s %s`", (command, version_arg)) | 194 | cli.log.error("{fg_red}Can't run `%s %s`", command, version_arg) |
195 | return False | 195 | return False |
196 | 196 | ||
197 | 197 | ||