diff --git a/fanficfare/adapters/__init__.py b/fanficfare/adapters/__init__.py index 47b8bfb6..3f9fd933 100644 --- a/fanficfare/adapters/__init__.py +++ b/fanficfare/adapters/__init__.py @@ -106,7 +106,6 @@ from . import adapter_fireflyfansnet from . import adapter_trekfanfictionnet from . import adapter_wwwutopiastoriescom from . import adapter_sinfuldreamscomunicornfic -from . import adapter_sinfuldreamscomwhisperedmuse from . import adapter_sinfuldreamscomwickedtemptation from . import adapter_asianfanficscom from . import adapter_mttjustoncenet diff --git a/fanficfare/adapters/adapter_sinfuldreamscomwhisperedmuse.py b/fanficfare/adapters/adapter_sinfuldreamscomwhisperedmuse.py deleted file mode 100644 index 595c4c66..00000000 --- a/fanficfare/adapters/adapter_sinfuldreamscomwhisperedmuse.py +++ /dev/null @@ -1,47 +0,0 @@ -# -*- coding: utf-8 -*- - -# Copyright 2011 Fanficdownloader team, 2018 FanFicFare team -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -# Software: eFiction -from __future__ import absolute_import -from .base_efiction_adapter import BaseEfictionAdapter - -class SinfulDreamsComWhisperedMuse(BaseEfictionAdapter): - - @staticmethod - def getSiteDomain(): - return 'sinful-dreams.com' - - @classmethod - def getPathToArchive(self): - return '/whispered/muse' - - @classmethod - def getConfigSection(cls): - "Overriden because [domain/path] section for multiple-adapter domain." - return cls.getSiteDomain()+cls.getPathToArchive() - - @classmethod - def getSiteAbbrev(self): - return 'snfldrms-wm' - - @classmethod - def getDateFormat(self): - return "%m/%d/%Y" - -def getClass(): - return SinfulDreamsComWhisperedMuse -