We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c90453 commit 9ab9bbeCopy full SHA for 9ab9bbe
nikola/plugins/command/check.py
@@ -49,7 +49,7 @@ def _call_nikola_list(site, arguments):
49
result = []
50
if os.name == 'nt':
51
shell = True
52
- command = command.join(' ')
+ command = ' '.join(command)
53
else:
54
shell = False
55
for task in subprocess.Popen(command, shell=shell, stdout=subprocess.PIPE).stdout.readlines():
0 commit comments