diff options
author | fauxpark <fauxpark@gmail.com> | 2019-10-31 16:50:45 +1100 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-10-30 22:50:45 -0700 |
commit | 74252e03cfd2ee3d7ba823fb4c3ce522f43e79a0 (patch) | |
tree | 473af1380db4baef9e8fbe7708737ed386361467 | |
parent | 22812aee5c207c35010c4b5478af6039c4f2b1ef (diff) | |
download | qmk_firmware-74252e03cfd2ee3d7ba823fb4c3ce522f43e79a0.tar.gz qmk_firmware-74252e03cfd2ee3d7ba823fb4c3ce522f43e79a0.zip |
Fix "could not find module" error message formatting (#7219)
-rwxr-xr-x | bin/qmk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |