Merge pull request #116 from mdarty/main

Added missing Parenthisis
This commit is contained in:
TC² 2025-02-17 08:21:17 -05:00 committed by GitHub
commit 69d74e33dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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})