Bug reported by Tobias Thelen: missing "self." in assignment target.

This commit is contained in:
Guido van Rossum 1999-03-22 15:28:08 +00:00
parent 13ae1c8ff8
commit f247d75507
1 changed files with 1 additions and 1 deletions

View File

@ -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: