diff options
Diffstat (limited to 'bin')
-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: | |||
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 | ||