From 74252e03cfd2ee3d7ba823fb4c3ce522f43e79a0 Mon Sep 17 00:00:00 2001 From: fauxpark Date: Thu, 31 Oct 2019 16:50:45 +1100 Subject: [PATCH] Fix "could not find module" error message formatting (#7219) --- bin/qmk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)