From: Guido van Rossum Date: Mon, 22 Mar 1999 15:28:08 +0000 (+0000) Subject: Bug reported by Tobias Thelen: missing "self." in assignment target. X-Git-Tag: v1.5.2c1~114 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f247d75507ec767df5ed38e9a2264acb123fe493;p=thirdparty%2FPython%2Fcpython.git Bug reported by Tobias Thelen: missing "self." in assignment target. --- diff --git a/Lib/shlex.py b/Lib/shlex.py index 8b4ac7a0d20d..173edde3999a 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: