summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorskullY <skullydazed@gmail.com>2020-04-04 11:18:31 -0700
committerskullydazed <skullydazed@users.noreply.github.com>2020-04-04 12:43:13 -0700
commit2f15cb21260f152b93c0ef76e780bba4f33e1938 (patch)
treeedb580c234987ee83e3321554e25ac7cddf65db1
parent8af156d9769349692f1de522ec365d161aced99a (diff)
minor tweaks0.8.95
-rwxr-xr-xlib/python/qmk/cli/doctor.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/python/qmk/cli/doctor.py b/lib/python/qmk/cli/doctor.py
index 3e0151cf32..e46e6c777d 100755
--- a/lib/python/qmk/cli/doctor.py
+++ b/lib/python/qmk/cli/doctor.py
@@ -14,9 +14,7 @@ from qmk.commands import run
ESSENTIAL_BINARIES = {
'dfu-programmer': {},
- 'avrdude': {
- 'version_arg': '-\\?'
- },
+ 'avrdude': {},
'dfu-util': {},
'avr-gcc': {
'version_arg': '-dumpversion'
@@ -166,7 +164,7 @@ def is_executable(command):
cli.log.debug('Found {fg_cyan}%s', command)
return True
- cli.log.error("{fg_red}Can't get version number of `%s`", command)
+ cli.log.error("{fg_red}Can't run `%s %s`", (command, version_arg))
return False