Merge pull request #488 from Ashfire908/patch-1

RSS: Remove b'' from around the RSS url.
This commit is contained in:
Valentin Lorentz 2013-07-18 12:12:04 -07:00
commit 277f296057
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ class RSS(callbacks.Plugin):
pubDate = ' [%s]' % (headline[2],) pubDate = ' [%s]' % (headline[2],)
newheadlines.append(format('%s %u%s', newheadlines.append(format('%s %u%s',
headline[0], headline[0],
link.encode('utf-8'), link,
pubDate)) pubDate))
return newheadlines return newheadlines