summaryrefslogtreecommitdiff
path: root/bin/qmk
diff options
context:
space:
mode:
authorskullydazed <skullydazed@users.noreply.github.com>2020-04-18 13:00:56 -0700
committerFlorian Didron <fdidron@users.noreply.github.com>2020-06-12 17:00:27 +0900
commit1dfe06affcb723756b038f18efee35f6e30d3802 (patch)
tree7eecd9071877417133762c1e9f873793217a23af /bin/qmk
parentd424a716a061bb79335940ea9594c19b4edfa3a1 (diff)
Move everything to Python 3.6 (#8835)
Diffstat (limited to 'bin/qmk')
-rwxr-xr-xbin/qmk2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/qmk b/bin/qmk
index 750ff2bdb7..801852d4e8 100755
--- a/bin/qmk
+++ b/bin/qmk
@@ -35,7 +35,7 @@ def _check_modules(requirements):
if not find_spec(module['import']):
print('Could not find module %s!' % module['name'])
- print('Please run `python3 -m pip install -r %s` to install required python dependencies.' % str(qmk_dir / requirements))
+ print('Please run `python3 -m pip install -r %s` to install required python dependencies.' % (qmk_dir / requirements,))
if developer:
print('You can also turn off developer mode: qmk config user.developer=None')
print()