commit | f247d75507ec767df5ed38e9a2264acb123fe493 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Mon Mar 22 15:28:08 1999 +0000 |
committer | Guido van Rossum <guido@python.org> | Mon Mar 22 15:28:08 1999 +0000 |
tree | 6c1aef0a4a4e053c9bdfaf89f3c6abce1db9ce72 | |
parent | 13ae1c8ff81befcfd0b0ece98ef471cd504642d8 [diff] |
Bug reported by Tobias Thelen: missing "self." in assignment target.
diff --git a/Lib/shlex.py b/Lib/shlex.py index 8b4ac7a..173edde 100644 --- a/Lib/shlex.py +++ b/Lib/shlex.py
@@ -95,7 +95,7 @@ self.pushback = [nextchar] + self.pushback if self.debug >= 2: print "I see punctuation in word state" - state = ' ' + self.state = ' ' if self.token: break # emit current token else: