Fix GirlGenious strip url.
This commit is contained in:
parent
a027fb760b
commit
8783b53012
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ class GirlGenius(_BasicScraper):
|
||||||
baseUrl = 'http://www.girlgeniusonline.com/'
|
baseUrl = 'http://www.girlgeniusonline.com/'
|
||||||
rurl = escape(baseUrl)
|
rurl = escape(baseUrl)
|
||||||
url = baseUrl + 'comic.php'
|
url = baseUrl + 'comic.php'
|
||||||
stripUrl = url + 'comic.php?date=%s'
|
stripUrl = url + '?date=%s'
|
||||||
firstStripUrl = stripUrl % '20021104'
|
firstStripUrl = stripUrl % '20021104'
|
||||||
imageSearch = compile(tagre("img", "src", r"(%sggmain/strips/[^']*)" % rurl, quote="'"))
|
imageSearch = compile(tagre("img", "src", r"(%sggmain/strips/[^']*)" % rurl, quote="'"))
|
||||||
prevSearch = compile(tagre("a", "href", r"(%s[^']+)" % rurl, quote="'") +
|
prevSearch = compile(tagre("a", "href", r"(%s[^']+)" % rurl, quote="'") +
|
||||||
|
|
Loading…
Reference in a new issue