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
|
||||
# deletechars.
|
||||
uniphooey = s
|
||||
str = []
|
||||
s = []
|
||||
push = s.append
|
||||
for raw in map(ord, uniphooey):
|
||||
push(raw < 127 and chr(raw) or "x")
|
||||
|
|
Loading…
Reference in New Issue