From dd96ca3d6b7e6091ccaea56044139ffe7228712c Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 24 May 2007 17:33:33 +0000 Subject: Fix parameter passing. --- Lib/shlex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/shlex.py b/Lib/shlex.py index fa18bb9..e7c8acc 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 = '' -- cgit v0.12