From 52ee7228eff7b2581b5ca9e391b77e5b0ef12e35 Mon Sep 17 00:00:00 2001 From: Bastian Kleineidam Date: Thu, 25 Apr 2013 19:01:38 +0200 Subject: [PATCH] Fix DorkTower image regex. --- dosagelib/plugins/d.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dosagelib/plugins/d.py b/dosagelib/plugins/d.py index e3f32e3e7..6d901b9d7 100644 --- a/dosagelib/plugins/d.py +++ b/dosagelib/plugins/d.py @@ -230,7 +230,7 @@ class DorkTower(_BasicScraper): rurl = escape(url) stripUrl = url + '%s/' firstStripUrl = stripUrl % '1997/01/01/shadis-magazine-strip-1' - imageSearch = compile(tagre("img", "src", r'(%sfiles/\d+/\d+/DorkTower[^"]+)' % rurl)) + imageSearch = compile(tagre("img", "src", r'(%sfiles/\d+/\d+/[^"]+\.gif)' % rurl)) prevSearch = compile(tagre("a", "href", r'(%s[^"]+)' % rurl)+"Previous") help = 'Index format: yyyy/mm/dd/stripname-dd-mm-yy'