Commit c41d974f authored by Jeremy Hylton's avatar Jeremy Hylton

Typo caught by pychecker

parent ebef6568
......@@ -192,7 +192,7 @@ class ParserBase:
if c == "(":
# an enumerated type; look for ')'
if ")" in rawdata[j:]:
j = awdata.find(")", j) + 1
j = rawdata.find(")", j) + 1
else:
return -1
while rawdata[j:j+1] in string.whitespace:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment