Browse Source

Fix "could not find module" error message formatting (#7219)

pull/7221/head 0.7.53
fauxpark 4 years ago
committed by Drashna Jaelre
parent
commit
74252e03cf
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      bin/qmk

+ 1
- 1
bin/qmk View File

@ -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)


Loading…
Cancel
Save