Fix typo.
This commit is contained in:
parent
4040fb8961
commit
163b717cd3
|
@ -120,7 +120,7 @@ class Parser:
|
||||||
# strings don't have a .translate() method that supports
|
# strings don't have a .translate() method that supports
|
||||||
# deletechars.
|
# deletechars.
|
||||||
uniphooey = s
|
uniphooey = s
|
||||||
str = []
|
s = []
|
||||||
push = s.append
|
push = s.append
|
||||||
for raw in map(ord, uniphooey):
|
for raw in map(ord, uniphooey):
|
||||||
push(raw < 127 and chr(raw) or "x")
|
push(raw < 127 and chr(raw) or "x")
|
||||||
|
|
Loading…
Reference in New Issue