more unicode fake replacements, now that i reverted the real fix

This commit is contained in:
Brian S. Stephan 2010-07-26 20:54:54 -05:00
parent 497554c314
commit 3037364ef9
1 changed files with 2 additions and 0 deletions

View File

@ -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: