[Python-checkins] r55550 - python/trunk/Lib/shlex.py

georg.brandl python-checkins at python.org
Thu May 24 19:33:39 CEST 2007


Author: georg.brandl
Date: Thu May 24 19:33:33 2007
New Revision: 55550

Modified:
   python/trunk/Lib/shlex.py
Log:
Fix parameter passing.


Modified: python/trunk/Lib/shlex.py
==============================================================================
--- python/trunk/Lib/shlex.py	(original)
+++ python/trunk/Lib/shlex.py	Thu May 24 19:33:33 2007
@@ -272,7 +272,7 @@
         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 = ''


More information about the Python-checkins mailing list