瀏覽代碼

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

Pete Johanson 5 年之前
父節點
當前提交
f9bb9ef0b8
共有 1 個文件被更改,包括 1 次插入1 次删除
  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)
         cli.log.debug('Found {fg_cyan}%s', command)
         return True
         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
     return False