Change dramione.org default encoding to utf8.

This commit is contained in:
Jim Miller
2015-08-05 08:58:24 -05:00
parent 58eca7efff
commit 0c272bcf36
+3 -2
View File
@@ -38,8 +38,9 @@ class DramioneOrgAdapter(BaseSiteAdapter):
def __init__(self, config, url):
BaseSiteAdapter.__init__(self, config, url)
self.decode = ["Windows-1252",
"utf8"] # 1252 is a superset of iso-8859-1.
self.decode = ["utf8",
"Windows-1252",]
# 1252 is a superset of iso-8859-1.
# Most sites that claim to be
# iso-8859-1 (and some that claim to be
# utf8) are really windows-1252.