Commit dd96ca3d authored by Georg Brandl's avatar Georg Brandl

Fix parameter passing.

parent c90bc759
......@@ -272,7 +272,7 @@ class shlex:
return token
def split(s, comments=False, posix=True):
lex = shlex(s, posix)
lex = shlex(s, posix=posix)
lex.whitespace_split = True
if not comments:
lex.commenters = ''
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment