Browse Source

CLI: Fix doctor error when can't run `bin/qmk --version`. (#8796)

pull/8804/head 0.8.118
Pete Johanson 4 years ago
committed by GitHub
parent
commit
f9bb9ef0b8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/python/qmk/cli/doctor.py

+ 1
- 1
lib/python/qmk/cli/doctor.py View File

@ -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


Loading…
Cancel
Save