aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/qmk/commands.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/qmk/commands.py b/lib/python/qmk/commands.py
index 5a6e60988..4ec7d2ea5 100644
--- a/lib/python/qmk/commands.py
+++ b/lib/python/qmk/commands.py
@@ -79,7 +79,8 @@ def run(command, *args, **kwargs):
79 raise TypeError('`command` must be a non-text sequence such as list or tuple.') 79 raise TypeError('`command` must be a non-text sequence such as list or tuple.')
80 80
81 if 'windows' in platform_id: 81 if 'windows' in platform_id:
82 safecmd = map(shlex.quote, command) 82 safecmd = map(str, command)
83 safecmd = map(shlex.quote, safecmd)
83 safecmd = ' '.join(safecmd) 84 safecmd = ' '.join(safecmd)
84 command = [os.environ['SHELL'], '-c', safecmd] 85 command = [os.environ['SHELL'], '-c', safecmd]
85 86