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])