Fix(bot) : remove -u flag from remove-user

This commit is contained in:
ReturnFI
2025-10-25 17:40:37 +00:00
parent f21cdc1189
commit 9349037f06

View File

@ -20,6 +20,6 @@ def delete_user(message):
def process_delete_user(message): def process_delete_user(message):
username = message.text.strip().lower() username = message.text.strip().lower()
command = f"python3 {CLI_PATH} remove-user -u {username}" command = f"python3 {CLI_PATH} remove-user {username}"
result = run_cli_command(command) result = run_cli_command(command)
bot.reply_to(message, result) bot.reply_to(message, result)