more unicode fake replacements, now that i reverted the real fix
This commit is contained in:
parent
497554c314
commit
3037364ef9
|
@ -185,7 +185,9 @@ class GoogleTranslate(Module):
|
|||
translation = translation.replace('\\u0026quot;', '"')
|
||||
translation = translation.replace('\\u0026amp;', '&')
|
||||
translation = translation.replace('\\u003c', '<')
|
||||
translation = translation.replace('\\u0026lt;', '<')
|
||||
translation = translation.replace('\\u003e', '>')
|
||||
translation = translation.replace('\\u0026gt;', '>')
|
||||
translation = translation.replace('\\u0026#39;', '\'')
|
||||
|
||||
if replypath is None:
|
||||
|
|
Loading…
Reference in New Issue