telegram_libs 0.1.24__tar.gz → 0.1.25__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: telegram_libs
3
- Version: 0.1.24
3
+ Version: 0.1.25
4
4
  Summary: Common libraries for Telegram bots
5
5
  Author: Andrey Gritsaenko gricaenko.95a@gmail.com
6
6
  Requires-Python: >=3.11,<4.0
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "telegram_libs"
3
- version = "0.1.24"
3
+ version = "0.1.25"
4
4
  description = "Common libraries for Telegram bots"
5
5
  authors = ["Andrey Gritsaenko gricaenko.95a@gmail.com"]
6
6
  readme = "README.md"
@@ -51,7 +51,7 @@ async def more_bots_list_command(update: Update, context: ContextTypes.DEFAULT_T
51
51
  user_id = update.effective_user.id
52
52
  bot_name = context.bot.name
53
53
  bot_logger.log_action(user_id, "more_bots_list_command", bot_name)
54
- message = "Here is the list of all bots:"
54
+ message = "Here is the list of all bots:\n\n"
55
55
  bots_list = "\n".join(
56
56
  f"- <a href='{url}'>{name}</a>" for url, name in BOTS.items()
57
57
  )
File without changes
File without changes