Fix import for Python 3.
This commit is contained in:
parent
b819afec39
commit
94470d564c
1 changed files with 4 additions and 1 deletions
|
@ -1,13 +1,16 @@
|
||||||
# -*- 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
|
||||||
# Copyright (C) 2012-2014 Bastian Kleineidam
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
||||||
|
# Copyright (C) 2015 Tobias Gruetzmacher
|
||||||
|
|
||||||
|
from __future__ import absolute_import
|
||||||
|
|
||||||
from re import compile, escape
|
from re import compile, escape
|
||||||
|
|
||||||
from ..scraper import _BasicScraper, _ParserScraper
|
from ..scraper import _BasicScraper, _ParserScraper
|
||||||
from ..helpers import bounceStarter, indirectStarter
|
from ..helpers import bounceStarter, indirectStarter
|
||||||
from ..util import tagre
|
from ..util import tagre
|
||||||
from wordpress import _WordpressScraper
|
from .wordpress import _WordpressScraper
|
||||||
|
|
||||||
class Caggage(_BasicScraper):
|
class Caggage(_BasicScraper):
|
||||||
url = 'http://caggagecomic.com/'
|
url = 'http://caggagecomic.com/'
|
||||||
|
|
Loading…
Reference in a new issue