remove SequentialExtractor class

This commit is contained in:
Mike Fährmann
2015-10-05 17:15:31 +02:00
parent 7d7c1afe20
commit 539faa0322
6 changed files with 15 additions and 21 deletions

View File

@@ -8,7 +8,7 @@
"""Extract manga pages from http://manga.redhawkscans.com/"""
from .common import SequentialExtractor, Message
from .common import Extractor, Message
from .. import text
import os.path
import json
@@ -24,12 +24,12 @@ info = {
],
}
class RedHawkScansExtractor(SequentialExtractor):
class RedHawkScansExtractor(Extractor):
url_base = "https://manga.redhawkscans.com/reader/read/"
def __init__(self, match):
SequentialExtractor.__init__(self)
Extractor.__init__(self)
self.part = match.group(1)
def items(self):