This commit is contained in:
Kovid Goyal 2012-08-27 21:29:06 +05:30
parent 880d360e0d
commit 955990c17d

View File

@ -39,7 +39,7 @@ class TheAtlantic(BasicNewsRecipe):
cover = soup.find('img', src=True, attrs={'class':'cover'})
if cover is not None:
self.cover_url = cover['src']
self.cover_url = cover['src'].replace(' ', '%20')
feeds = []
seen_titles = set([])