Skip to content

Commit

Permalink
fix config change magic (via #1586)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kwpolska committed Jan 18, 2015
1 parent 5c90453 commit 9ab9bbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nikola/plugins/command/check.py
Expand Up @@ -49,7 +49,7 @@ def _call_nikola_list(site, arguments):
result = []
if os.name == 'nt':
shell = True
command = command.join(' ')
command = ' '.join(command)
else:
shell = False
for task in subprocess.Popen(command, shell=shell, stdout=subprocess.PIPE).stdout.readlines():
Expand Down

0 comments on commit 9ab9bbe

Please sign in to comment.