Skip to content

Commit

Permalink
Merge pull request #4498 from MCGallaspy/central-develop
Browse files Browse the repository at this point in the history
Massage the Popen arguments into windows form
  • Loading branch information
rtibbles committed Sep 24, 2015
2 parents 4951c10 + e418511 commit 90d20c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python-packages/fle_utils/django_utils/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def call_outside_command_with_output(command, *args, **kwargs):
else:
kalite_bin = 'kalite'

cmd = (kalite_bin, "manage", command)
cmd = (kalite_bin, "manage", command) if os.name != "nt" else (sys.executable, kalite_bin, "manage", command)
for arg in args:
cmd += (arg,)

Expand Down

0 comments on commit 90d20c6

Please sign in to comment.