diff options
author | Georg Brandl <georg@python.org> | 2007-05-24 17:33:33 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-05-24 17:33:33 (GMT) |
commit | dd96ca3d6b7e6091ccaea56044139ffe7228712c (patch) | |
tree | c676cbcd1fbfd17d904f65d241cfbed55acf2216 /Lib/shlex.py | |
parent | c90bc7599441632a0b6d0b9bfc92563fe7e19104 (diff) | |
download | cpython-dd96ca3d6b7e6091ccaea56044139ffe7228712c.zip cpython-dd96ca3d6b7e6091ccaea56044139ffe7228712c.tar.gz cpython-dd96ca3d6b7e6091ccaea56044139ffe7228712c.tar.bz2 |
Fix parameter passing.
Diffstat (limited to 'Lib/shlex.py')
-rw-r--r-- | Lib/shlex.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 = '' |