mirror of
https://github.com/kemayo/leech
synced 2025-12-23 16:54:09 +01:00
Spacebattles is now on XenForo2
This commit is contained in:
parent
5e034a7d65
commit
d782928e0e
2 changed files with 11 additions and 11 deletions
|
|
@ -303,16 +303,6 @@ class XenForoIndex(XenForo):
|
|||
return self._chapter_list_index(url)
|
||||
|
||||
|
||||
@register
|
||||
class SpaceBattles(XenForo):
|
||||
domain = 'forums.spacebattles.com'
|
||||
|
||||
|
||||
@register
|
||||
class SpaceBattlesIndex(SpaceBattles, XenForoIndex):
|
||||
_key = "SpaceBattles"
|
||||
|
||||
|
||||
@register
|
||||
class QuestionableQuesting(XenForo):
|
||||
domain = 'forum.questionablequesting.com'
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import datetime
|
|||
import logging
|
||||
|
||||
from . import register, Section, SiteException
|
||||
from .xenforo import XenForo
|
||||
from .xenforo import XenForo, XenForoIndex
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
|
@ -57,6 +57,16 @@ class XenForo2(XenForo):
|
|||
raise SiteException("No date")
|
||||
|
||||
|
||||
@register
|
||||
class SpaceBattles(XenForo2):
|
||||
domain = 'forums.spacebattles.com'
|
||||
|
||||
|
||||
@register
|
||||
class SpaceBattlesIndex(SpaceBattles, XenForoIndex):
|
||||
_key = "SpaceBattles"
|
||||
|
||||
|
||||
@register
|
||||
class SufficientVelocity(XenForo2):
|
||||
domain = 'forums.sufficientvelocity.com'
|
||||
|
|
|
|||
Loading…
Reference in a new issue