RSS: Another attempt at fixing encoding issues.

This commit is contained in:
Valentin Lorentz 2014-03-22 11:29:19 +00:00
parent cdf97100f6
commit 933d4d3ffa

View File

@ -150,14 +150,22 @@ class RSS(callbacks.Plugin):
if headline[2]:
pubDate = ' [%s]' % (headline[2],)
if sys.version_info[0] < 3:
try:
import charade.universaldetector
u = charade.universaldetector.UniversalDetector()
u.feed(s)
u.close()
encoding = u.result['encoding']
except ImportError:
encoding = 'utf8'
if isinstance(headline[0], unicode):
newheadlines.append(format('%s %u%s',
headline[0].encode('utf-8','replace'),
headline[0].encode(encoding,'replace'),
link,
pubDate))
else:
newheadlines.append(format('%s %u%s',
headline[0].decode('utf-8','replace'),
headline[0]
link,
pubDate))
else: