From ff6cd7ccf15624f5d763b08da85291d877ff20e1 Mon Sep 17 00:00:00 2001 From: Jim Miller Date: Sun, 10 Apr 2016 09:44:46 -0500 Subject: [PATCH] Catch more img tag exceptions. --- fanficfare/story.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fanficfare/story.py b/fanficfare/story.py index 30f3c552..984762f5 100644 --- a/fanficfare/story.py +++ b/fanficfare/story.py @@ -1067,9 +1067,9 @@ class Story(Configurable): prefix='ffdl' if imgurl not in self.imgurls: - parsedUrl = urlparse.urlparse(imgurl) try: + parsedUrl = urlparse.urlparse(imgurl) if self.getConfig('no_image_processing'): (data,ext,mime) = no_convert_image(imgurl, fetch(imgurl))