From: Georg Brandl Date: Thu, 24 May 2007 17:33:33 +0000 (+0000) Subject: Fix parameter passing. X-Git-Tag: v2.6a1~1699 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dd96ca3d6b7e6091ccaea56044139ffe7228712c;p=python Fix parameter passing. --- diff --git a/Lib/shlex.py b/Lib/shlex.py index fa18bb95e4..e7c8accd42 100644 --- a/Lib/shlex.py +++ b/Lib/shlex.py @@ -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 = ''