From cc6ebfdc2ad3356aa5ea1e826cbb32caba5f8485 Mon Sep 17 00:00:00 2001 From: klux2 Date: Thu, 4 Jul 2019 13:43:19 +0200 Subject: [PATCH] adding newline character to message text to improve readability Signed-off-by: klux2 --- HSMensaW_botA.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HSMensaW_botA.py b/HSMensaW_botA.py index e0e1c10..f50bc8d 100644 --- a/HSMensaW_botA.py +++ b/HSMensaW_botA.py @@ -150,7 +150,7 @@ async def send_status(text: str, ignore_flag: bool = False) -> None: :return: """ global config_ids - message_log.write(text) + message_log.write(text + "\n") if ignore_flag or logging_enabled: for chat_id in config_ids: await send_message(bot_obj=bot, chat_id=chat_id, msg=text)