Fix syntax errors.
This commit is contained in:
parent
7e39b291dc
commit
7dbd14f934
2 changed files with 3 additions and 3 deletions
|
@ -125,7 +125,7 @@ class Angels2200(_BasicScraper):
|
||||||
latestUrl = 'http://www.janahoffmann.com/angels/'
|
latestUrl = 'http://www.janahoffmann.com/angels/'
|
||||||
stripUrl = latestUrl + '%s'
|
stripUrl = latestUrl + '%s'
|
||||||
imageSearch = compile(tagre("img", "src", r"(http://www\.janahoffmann\.com/angels/comics/[^']+)"))
|
imageSearch = compile(tagre("img", "src", r"(http://www\.janahoffmann\.com/angels/comics/[^']+)"))
|
||||||
prevSearch = compile(tagre("a", "href", r'([^"]+)')+"« Previous"))
|
prevSearch = compile(tagre("a", "href", r'([^"]+)')+"« Previous")
|
||||||
help = 'Index format: yyyy/mm/dd/part-<n>-comic-<n>'
|
help = 'Index format: yyyy/mm/dd/part-<n>-comic-<n>'
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
# -*- coding: iso-8859-1 -*-
|
# -*- coding: iso-8859-1 -*-
|
||||||
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
|
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
|
||||||
from re import compile, IGNORECASE, MULTILINE
|
from re import compile
|
||||||
|
|
||||||
from ..scraper import _BasicScraper
|
from ..scraper import _BasicScraper
|
||||||
from ..helpers import bounceStarter, indirectStarter
|
from ..helpers import bounceStarter, indirectStarter
|
||||||
from ..util import getQueryParams
|
from ..util import tagre, getQueryParams
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue