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 | |
parent | 3d9ffd3efb3fbc0662a912d57baf3ba6183c0ee8 (diff) |
CLI: Fix doctor error when can't run `bin/qmk --version`. (#8796)
-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 3e6f6fe54e..3c74fae699 100755 --- a/lib/python/qmk/cli/doctor.py +++ b/lib/python/qmk/cli/doctor.py @@ -191,7 +191,7 @@ def is_executable(command): cli.log.debug('Found {fg_cyan}%s', command) return True - cli.log.error("{fg_red}Can't run `%s %s`", (command, version_arg)) + cli.log.error("{fg_red}Can't run `%s %s`", command, version_arg) return False |