diff options
author | Guido van Rossum <guido@python.org> | 1999-03-22 15:28:08 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-03-22 15:28:08 +0000 |
commit | f247d75507ec767df5ed38e9a2264acb123fe493 (patch) | |
tree | 6c1aef0a4a4e053c9bdfaf89f3c6abce1db9ce72 /Lib/shlex.py | |
parent | 13ae1c8ff81befcfd0b0ece98ef471cd504642d8 (diff) | |
download | cpython-git-f247d75507ec767df5ed38e9a2264acb123fe493.tar.gz |
Bug reported by Tobias Thelen: missing "self." in assignment target.
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 8b4ac7a0d2..173edde399 100644 --- a/Lib/shlex.py +++ b/Lib/shlex.py @@ -95,7 +95,7 @@ class shlex: 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: |