diff --git a/examples/plugins/example_plugin.py b/examples/plugins/example_plugin.py index 0a3c75e..04ea2ce 100644 --- a/examples/plugins/example_plugin.py +++ b/examples/plugins/example_plugin.py @@ -14,7 +14,7 @@ class HelloPlugin(plugin.APRSDRegexCommandPluginBase): command_regex = "^[hH]" command_name = "hello" - def command(self, packet): + def process(self, packet): LOG.info("HelloPlugin") reply = f"Hello '{packet.from_call}'" return reply