Skip to content

Commit

Permalink
turning off posix mode makes my test pass. I'm not sure why, or why i…
Browse files Browse the repository at this point in the history
…t was there
  • Loading branch information
bill committed Mar 8, 2012
1 parent 613876a commit e8e4c70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion envoy/core.py
Expand Up @@ -137,7 +137,7 @@ def expand_args(command):

# Prepare arguments.
if isinstance(command, basestring):
splitter = shlex.shlex(command, posix=True)
splitter = shlex.shlex(command)
splitter.whitespace = '|'
splitter.whitespace_split = True
command = []
Expand Down

0 comments on commit e8e4c70

Please sign in to comment.