Skip to content

Commit 9ab9bbe

Browse files
committedJan 18, 2015
fix config change magic (via #1586)
1 parent 5c90453 commit 9ab9bbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎nikola/plugins/command/check.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def _call_nikola_list(site, arguments):
4949
result = []
5050
if os.name == 'nt':
5151
shell = True
52-
command = command.join(' ')
52+
command = ' '.join(command)
5353
else:
5454
shell = False
5555
for task in subprocess.Popen(command, shell=shell, stdout=subprocess.PIPE).stdout.readlines():

0 commit comments

Comments
 (0)
Please sign in to comment.