From 0eaeaaa757adac5a47f0d378e9f4522689b53cb1 Mon Sep 17 00:00:00 2001 From: Schimon Jehudah Date: Tue, 2 Jan 2024 12:21:28 +0000 Subject: [PATCH] Fix error --- slixfeed/xmpp/process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slixfeed/xmpp/process.py b/slixfeed/xmpp/process.py index e0c2b2d..57fd432 100644 --- a/slixfeed/xmpp/process.py +++ b/slixfeed/xmpp/process.py @@ -154,7 +154,7 @@ async def message(self, message): "This action is restricted. " "Type: breakpoint." ) - send_reply_message(self, message, response) + send_reply_message(self, message, response) case "commands": response = text.print_cmd() send_reply_message(self, message, response)