https://bugzilla.wikimedia.org/show_bug.cgi?id=54572

--- Comment #2 from Kunal Mehta (Legoktm) <[email protected]> ---
output should be fixed in output method. Would you please check the following
fix in output method:

def output\(...\)
...
try:
text = unicode\(text, 'utf-8'\)
except UnicodeDecodeError:
text = unicode\(text, 'iso8859-1'\)


replace it with

try:
text = unicode\(text, 'utf-8'\)
except UnicodeDecodeError:
text = unicode\(text, locale.getpreferredencoding\(\)\)

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to