From 955990c17d8fad45d01a944653f7379946845601 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 27 Aug 2012 21:29:06 +0530 Subject: [PATCH] ... --- recipes/atlantic.recipe | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/atlantic.recipe b/recipes/atlantic.recipe index daf73aebdc..928f1343b3 100644 --- a/recipes/atlantic.recipe +++ b/recipes/atlantic.recipe @@ -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([])