From 9349037f06325ea4c712966210433c501b343cc4 Mon Sep 17 00:00:00 2001 From: ReturnFI <151555003+ReturnFI@users.noreply.github.com> Date: Sat, 25 Oct 2025 17:40:37 +0000 Subject: [PATCH] Fix(bot) : remove -u flag from remove-user --- core/scripts/telegrambot/utils/deleteuser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/scripts/telegrambot/utils/deleteuser.py b/core/scripts/telegrambot/utils/deleteuser.py index 8fd2c76..327e2ff 100644 --- a/core/scripts/telegrambot/utils/deleteuser.py +++ b/core/scripts/telegrambot/utils/deleteuser.py @@ -20,6 +20,6 @@ def delete_user(message): def process_delete_user(message): 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) bot.reply_to(message, result) \ No newline at end of file