From 8b4e868d52f7a93b70559bcc75acefa7f6f69124 Mon Sep 17 00:00:00 2001 From: Blergo Date: Tue, 2 Jul 2024 23:16:57 +0100 Subject: [PATCH] more optimisation for congested mesh --- command_handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command_handlers.py b/command_handlers.py index 7395aed..d39e727 100644 --- a/command_handlers.py +++ b/command_handlers.py @@ -69,7 +69,7 @@ def handle_help_command(sender_id, interface, state=None): "[1]Server Stats", "[2]Exit Stats Menu" ] - response = title + "Available commands:\n" + "\n".join(commands) + response = title + "\n".join(commands) send_message(response, sender_id, interface) def handle_stats_command(sender_id, interface):