Skip to content

Commit

Permalink
CLI: Fix doctor error when can't run bin/qmk --version. (#8796)
Browse files Browse the repository at this point in the history
  • Loading branch information
petejohanson authored Apr 14, 2020
1 parent 3d9ffd3 commit f9bb9ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/qmk/cli/doctor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit f9bb9ef

Please sign in to comment.