summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPete Johanson <peter@peterjohanson.com>2020-04-14 10:58:00 -0400
committerGitHub <noreply@github.com>2020-04-14 16:58:00 +0200
commitf9bb9ef0b81cbec4a4e05ce0fa5564ce9481c926 (patch)
tree8b6250f35f73338444c7d77da97700e20389b694
parent3d9ffd3efb3fbc0662a912d57baf3ba6183c0ee8 (diff)
CLI: Fix doctor error when can't run `bin/qmk --version`. (#8796)0.8.1190.8.118
-rwxr-xr-xlib/python/qmk/cli/doctor.py2
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