mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-01-03 06:34:04 +01:00
adapter_scifistoriescom: inherit from StoriesOnlineNetAdapter instead of FineStoriesComAdapter
This commit is contained in:
parent
99049da5c6
commit
ce6df518a2
1 changed files with 2 additions and 2 deletions
|
|
@ -21,14 +21,14 @@ logger = logging.getLogger(__name__)
|
|||
|
||||
# py2 vs py3 transition
|
||||
|
||||
from .adapter_finestoriescom import FineStoriesComAdapter
|
||||
from .adapter_storiesonlinenet import StoriesOnlineNetAdapter
|
||||
|
||||
def getClass():
|
||||
return SciFiStoriesComAdapter
|
||||
|
||||
# Class name has to be unique. Our convention is camel case the
|
||||
# sitename with Adapter at the end. www is skipped.
|
||||
class SciFiStoriesComAdapter(FineStoriesComAdapter):
|
||||
class SciFiStoriesComAdapter(StoriesOnlineNetAdapter):
|
||||
|
||||
@classmethod
|
||||
def getSiteAbbrev(cls):
|
||||
|
|
|
|||
Loading…
Reference in a new issue