From 16660e1f49b16d3682ea1e0aab2a6b6c4799898b Mon Sep 17 00:00:00 2001 From: Matthew Daugherty Date: Sun, 16 Feb 2025 17:16:04 -0600 Subject: [PATCH] Added missing Parenthisis --- command_handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command_handlers.py b/command_handlers.py index 9cfbf9c..5696d0f 100644 --- a/command_handlers.py +++ b/command_handlers.py @@ -382,7 +382,7 @@ def handle_channel_directory_steps(sender_id, message, step, state, interface): else: send_message("No channels available in the directory.", sender_id, interface) handle_channel_directory_command(sender_id, interface) - elif choice.lower == 'p': + elif choice.lower() == 'p': send_message("Name your channel for the directory:", sender_id, interface) update_user_state(sender_id, {'command': 'CHANNEL_DIRECTORY', 'step': 3})