From e61ffb4b5b34c42f5ffb53c0477757c3a4d13545 Mon Sep 17 00:00:00 2001 From: Bastian Schroll Date: Mon, 28 Oct 2019 21:27:15 +0100 Subject: [PATCH] fix some errors --- module/descriptor.py | 2 +- module/filter/modeFilter.py | 2 +- module/filter/regexFilter.py | 2 +- module/template_module.py | 2 +- plugin/template_plugin.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/module/descriptor.py b/module/descriptor.py index 164f25e..77a28f8 100644 --- a/module/descriptor.py +++ b/module/descriptor.py @@ -25,7 +25,7 @@ from module.moduleBase import ModuleBase logging.debug("- %s loaded", __name__) -class BoswatchModuleBase(ModuleBase): +class BoswatchModule(ModuleBase): """!Adds descriptions to bwPackets""" def __init__(self, config): """!Do not change anything here!""" diff --git a/module/filter/modeFilter.py b/module/filter/modeFilter.py index 7d8b193..a81b688 100644 --- a/module/filter/modeFilter.py +++ b/module/filter/modeFilter.py @@ -25,7 +25,7 @@ from module.moduleBase import ModuleBase logging.debug("- %s loaded", __name__) -class BoswatchModuleBase(ModuleBase): +class BoswatchModule(ModuleBase): """!Filter of specific bwPacket mode""" def __init__(self, config): """!Do not change anything here!""" diff --git a/module/filter/regexFilter.py b/module/filter/regexFilter.py index 622b08f..887a420 100644 --- a/module/filter/regexFilter.py +++ b/module/filter/regexFilter.py @@ -25,7 +25,7 @@ import re logging.debug("- %s loaded", __name__) -class BoswatchModuleBase(ModuleBase): +class BoswatchModule(ModuleBase): """!Regex based filter mechanism""" def __init__(self, config): """!Do not change anything here!""" diff --git a/module/template_module.py b/module/template_module.py index 1066954..7243101 100644 --- a/module/template_module.py +++ b/module/template_module.py @@ -25,7 +25,7 @@ from module.moduleBase import ModuleBase logging.debug("- %s loaded", __name__) -class BoswatchModuleBase(ModuleBase): +class BoswatchModul(ModuleBase): """!Description of the Module""" def __init__(self, config): """!Do not change anything here!""" diff --git a/plugin/template_plugin.py b/plugin/template_plugin.py index 987d1df..d981e9f 100644 --- a/plugin/template_plugin.py +++ b/plugin/template_plugin.py @@ -25,7 +25,7 @@ from plugin.pluginBase import PluginBase logging.debug("- %s loaded", __name__) -class BoswatchPluginBase(PluginBase): +class BoswatchPlugin(PluginBase): """!Description of the Plugin""" def __init__(self, config): """!Do not change anything here!"""