From: fauxpark Date: Thu, 31 Oct 2019 05:50:45 +0000 (+1100) Subject: Fix "could not find module" error message formatting (#7219) X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=74252e03cfd2ee3d7ba823fb4c3ce522f43e79a0;p=qmk_firmware.git Fix "could not find module" error message formatting (#7219) --- 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: 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)