mirror of
https://github.com/BOSWatch/BW3-Core.git
synced 2025-12-06 07:12:04 +01:00
fix some errors
This commit is contained in:
parent
bf16a5c82f
commit
e61ffb4b5b
|
|
@ -25,7 +25,7 @@ from module.moduleBase import ModuleBase
|
||||||
logging.debug("- %s loaded", __name__)
|
logging.debug("- %s loaded", __name__)
|
||||||
|
|
||||||
|
|
||||||
class BoswatchModuleBase(ModuleBase):
|
class BoswatchModule(ModuleBase):
|
||||||
"""!Adds descriptions to bwPackets"""
|
"""!Adds descriptions to bwPackets"""
|
||||||
def __init__(self, config):
|
def __init__(self, config):
|
||||||
"""!Do not change anything here!"""
|
"""!Do not change anything here!"""
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ from module.moduleBase import ModuleBase
|
||||||
logging.debug("- %s loaded", __name__)
|
logging.debug("- %s loaded", __name__)
|
||||||
|
|
||||||
|
|
||||||
class BoswatchModuleBase(ModuleBase):
|
class BoswatchModule(ModuleBase):
|
||||||
"""!Filter of specific bwPacket mode"""
|
"""!Filter of specific bwPacket mode"""
|
||||||
def __init__(self, config):
|
def __init__(self, config):
|
||||||
"""!Do not change anything here!"""
|
"""!Do not change anything here!"""
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ import re
|
||||||
logging.debug("- %s loaded", __name__)
|
logging.debug("- %s loaded", __name__)
|
||||||
|
|
||||||
|
|
||||||
class BoswatchModuleBase(ModuleBase):
|
class BoswatchModule(ModuleBase):
|
||||||
"""!Regex based filter mechanism"""
|
"""!Regex based filter mechanism"""
|
||||||
def __init__(self, config):
|
def __init__(self, config):
|
||||||
"""!Do not change anything here!"""
|
"""!Do not change anything here!"""
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ from module.moduleBase import ModuleBase
|
||||||
logging.debug("- %s loaded", __name__)
|
logging.debug("- %s loaded", __name__)
|
||||||
|
|
||||||
|
|
||||||
class BoswatchModuleBase(ModuleBase):
|
class BoswatchModul(ModuleBase):
|
||||||
"""!Description of the Module"""
|
"""!Description of the Module"""
|
||||||
def __init__(self, config):
|
def __init__(self, config):
|
||||||
"""!Do not change anything here!"""
|
"""!Do not change anything here!"""
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ from plugin.pluginBase import PluginBase
|
||||||
logging.debug("- %s loaded", __name__)
|
logging.debug("- %s loaded", __name__)
|
||||||
|
|
||||||
|
|
||||||
class BoswatchPluginBase(PluginBase):
|
class BoswatchPlugin(PluginBase):
|
||||||
"""!Description of the Plugin"""
|
"""!Description of the Plugin"""
|
||||||
def __init__(self, config):
|
def __init__(self, config):
|
||||||
"""!Do not change anything here!"""
|
"""!Do not change anything here!"""
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue