~ruther/qmk_firmware

f9bb9ef0b81cbec4a4e05ce0fa5564ce9481c926 — Pete Johanson 5 years ago 3d9ffd3
CLI: Fix doctor error when can't run `bin/qmk --version`. (#8796)

1 files changed, 1 insertions(+), 1 deletions(-)

M lib/python/qmk/cli/doctor.py
M lib/python/qmk/cli/doctor.py => lib/python/qmk/cli/doctor.py +1 -1
@@ 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