Fix typo.

This commit is contained in:
Martin v. Löwis 2007-08-13 06:02:09 +00:00
parent 4040fb8961
commit 163b717cd3
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ class Parser:
# strings don't have a .translate() method that supports
# deletechars.
uniphooey = s
str = []
s = []
push = s.append
for raw in map(ord, uniphooey):
push(raw < 127 and chr(raw) or "x")