Rework conf in plugins

This commit is contained in:
2014-11-24 21:42:57 +01:00
parent 549c0e5d97
commit d5db763b48
7 changed files with 19 additions and 25 deletions

View File

@@ -6,8 +6,8 @@ from iplugin import IPlugin
from awstats_robots_data import awstats_robots
class IWLAPreAnalysisRobots(IPlugin):
def __init__(self, iwla, conf):
super(IWLAPreAnalysisRobots, self).__init__(iwla, conf)
def __init__(self, iwla):
super(IWLAPreAnalysisRobots, self).__init__(iwla)
self.API_VERSION = 1
def load(self):

View File

@@ -7,8 +7,8 @@ from iplugin import IPlugin
class IWLAPreAnalysisSoutade(IPlugin):
def __init__(self, iwla, conf):
super(IWLAPreAnalysisSoutade, self).__init__(iwla, conf)
def __init__(self, iwla):
super(IWLAPreAnalysisSoutade, self).__init__(iwla)
self.API_VERSION = 1
def load(self):