fix StandStillStaySilent, strip urls when downloading
This commit is contained in:
parent
71ed9ad69d
commit
78954da9d7
2 changed files with 3 additions and 3 deletions
2
dosagelib/comic.py
Normal file → Executable file
2
dosagelib/comic.py
Normal file → Executable file
|
@ -42,7 +42,7 @@ class ComicImage(object):
|
||||||
"""Set URL and filename."""
|
"""Set URL and filename."""
|
||||||
self.name = name
|
self.name = name
|
||||||
self.referrer = referrer
|
self.referrer = referrer
|
||||||
self.url = url
|
self.url = url.strip()
|
||||||
self.dirname = dirname
|
self.dirname = dirname
|
||||||
filename = getFilename(filename)
|
filename = getFilename(filename)
|
||||||
self.filename, self.ext = os.path.splitext(filename)
|
self.filename, self.ext = os.path.splitext(filename)
|
||||||
|
|
|
@ -465,8 +465,8 @@ class StandStillStaySilent(_BasicScraper):
|
||||||
rurl = escape(url)
|
rurl = escape(url)
|
||||||
stripUrl = url + '?page=%s'
|
stripUrl = url + '?page=%s'
|
||||||
firstStripUrl = stripUrl % '1'
|
firstStripUrl = stripUrl % '1'
|
||||||
imageSearch = compile(tagre("img", "src", r"(comicpages/[^']+)", before="comicnormal", quote="'"))
|
imageSearch = compile(tagre("img", "src", r'(comicpages/[^"]+)', before="comicnormal"))
|
||||||
prevSearch = compile(tagre("a", "href", r"([^']+)", quote="'") + tagre("div", "id", r'navprev', quote="'"))
|
prevSearch = compile(tagre("a", "href", r"([^']+)", quote="'") + tagre("div", "id", r'navprev'))
|
||||||
help = 'Index Format: number'
|
help = 'Index Format: number'
|
||||||
description = u'"Stand Still. Stay Silent" is a post-apocalyptic adventure story with a rather light tone and careless pace.'
|
description = u'"Stand Still. Stay Silent" is a post-apocalyptic adventure story with a rather light tone and careless pace.'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue