Fix syntax errors.

This commit is contained in:
Bastian Kleineidam 2012-11-19 21:20:34 +01:00
parent 7e39b291dc
commit 7dbd14f934
2 changed files with 3 additions and 3 deletions

View file

@ -125,7 +125,7 @@ class Angels2200(_BasicScraper):
latestUrl = 'http://www.janahoffmann.com/angels/'
stripUrl = latestUrl + '%s'
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>'

View file

@ -1,10 +1,10 @@
# -*- coding: iso-8859-1 -*-
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
from re import compile, IGNORECASE, MULTILINE
from re import compile
from ..scraper import _BasicScraper
from ..helpers import bounceStarter, indirectStarter
from ..util import getQueryParams
from ..util import tagre, getQueryParams