From c66f6d693b74e51c97660f59934a11affcd71d94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=95=D0=B2=D0=B3=D0=B5=D0=BD=D0=B8=D0=B9=20=D0=A5=D1=80?= =?UTF-8?q?=D0=B0=D0=BC=D0=BE=D0=B2?= Date: Wed, 29 May 2024 22:44:58 +0300 Subject: [PATCH] @here --- news-bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/news-bot.py b/news-bot.py index 838628e..869d187 100755 --- a/news-bot.py +++ b/news-bot.py @@ -351,7 +351,7 @@ def check_discord_public(): for topic_id, topic_title in reversed(list_for_public): text_data = news_content(topic_id) if text_data: - content = f"----------------------------------------------------------\n### {topic_title}\t\n" + text_data + "\n" + content = f"----------------------------------------------------------\n### {topic_title}\t\n" + text_data + "\n" + "@here" # Разбиваем содержимое на части по 4000 символов for i in range(0, len(content), 2000): await channel.send(content[i:i+2000])