From 0cecf7db4b4c9b9e32a161006db49d38672df8aa Mon Sep 17 00:00:00 2001 From: Brett Parker Date: Mon, 11 Feb 2013 09:41:39 +0000 Subject: [PATCH] Stop trying to decode image tags to utf-8 - If the title/url contains a utf-8 character and we try to decode it it will fail due to not being present in the ascii set. Feedparser has already made sure that everything is utf-8 before we get it. --- rss2maildir.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rss2maildir.py b/rss2maildir.py index 8a59c85..dc0427a 100755 --- a/rss2maildir.py +++ b/rss2maildir.py @@ -307,9 +307,9 @@ class HTML2Text(HTMLParser): url = u'' for attr in attrs: if attr[0] == 'alt': - alt = attr[1].decode('utf-8') + alt = attr[1] elif attr[0] == 'src': - url = attr[1].decode('utf-8') + url = attr[1] if url: if alt: if self.images.has_key(alt): -- 2.30.2