feed: fix Feed._get_entry_content unpacking in Feed._get_entry_title
authorW. Trevor King <wking@tremily.us>
Mon, 10 Dec 2012 23:23:51 +0000 (18:23 -0500)
committerW. Trevor King <wking@tremily.us>
Tue, 11 Dec 2012 01:05:57 +0000 (20:05 -0500)
commitb20592ad495f18f9eb968c90a550f13f6bf8f3bc
tree35e4891021d4bb99e6504ca162173026183f905c
parenteb37e1be28fb9b3b0f34e741e251ed7a5de71b4a
feed: fix Feed._get_entry_content unpacking in Feed._get_entry_title

_get_entry_content returns a single dict, but _get_entry_id had been
unpacking it as if it was an object with a `content` attribute.

Also convert HTML to text before extracting the title, to avoid things
like `<p>In the beginning...` in the title.

Signed-off-by: W. Trevor King <wking@tremily.us>
rss2email/feed.py