[base_xenforo2forum] should override [base_xenforoforum], not vice versa.

This commit is contained in:
Jim Miller 2019-07-13 09:31:23 -05:00
parent 4ec21b145f
commit ada3f5ed2a

View file

@ -43,7 +43,7 @@ class BaseXenForo2ForumAdapter(BaseXenForoForumAdapter):
@classmethod
def getConfigSections(cls):
"Only needs to be overriden if has additional ini sections."
return ['base_xenforo2forum'] + super(BaseXenForo2ForumAdapter, cls).getConfigSections()
return super(BaseXenForo2ForumAdapter, cls).getConfigSections() + ['base_xenforo2forum']
def performLogin(self):
params = {}