summaryrefslogtreecommitdiff
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)
Fix "could not find module" error message formatting (#7219)0.7.53
-rwxr-xr-xbin/qmk2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/qmk b/bin/qmk
index 876473fa43..5da8673ba0 100755
--- a/bin/qmk
+++ b/bin/qmk
@@ -26,7 +26,7 @@ with open(os.path.join(qmk_dir, 'requirements.txt'), 'r') as fd:
module = line.split('=')[0] if '=' in line else line
if not find_spec(module):
- print('Could not find module %s!', module)
+ print('Could not find module %s!' % module)
print('Please run `pip3 install -r requirements.txt` to install the python dependencies.')
exit(255)