Explorar el Código

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

Pete Johanson hace 5 años
padre
commit
f9bb9ef0b8
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      lib/python/qmk/cli/doctor.py

+ 1 - 1
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