aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfauxpark <fauxpark@gmail.com>2019-10-31 16:50:45 +1100
committerDrashna Jaelre <drashna@live.com>2019-10-30 22:50:45 -0700
commit74252e03cfd2ee3d7ba823fb4c3ce522f43e79a0 (patch)
tree473af1380db4baef9e8fbe7708737ed386361467
parent22812aee5c207c35010c4b5478af6039c4f2b1ef (diff)
downloadqmk_firmware-74252e03cfd2ee3d7ba823fb4c3ce522f43e79a0.tar.gz
qmk_firmware-74252e03cfd2ee3d7ba823fb4c3ce522f43e79a0.zip
Fix "could not find module" error message formatting (#7219)
-rwxr-xr-xbin/qmk2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/qmk b/bin/qmk
index 876473fa4..5da8673ba 100755
--- a/bin/qmk
+++ b/bin/qmk
@@ -26,7 +26,7 @@ with open(os.path.join(qmk_dir, 'requirements.txt'), 'r') as fd:
26 26
27 module = line.split('=')[0] if '=' in line else line 27 module = line.split('=')[0] if '=' in line else line
28 if not find_spec(module): 28 if not find_spec(module):
29 print('Could not find module %s!', module) 29 print('Could not find module %s!' % module)
30 print('Please run `pip3 install -r requirements.txt` to install the python dependencies.') 30 print('Please run `pip3 install -r requirements.txt` to install the python dependencies.')
31 exit(255) 31 exit(255)
32 32