From 251825a12318607b6ca59906eb0d9ed2da966111 Mon Sep 17 00:00:00 2001 From: nagumii Date: Thu, 26 Sep 2024 19:02:17 +0300 Subject: [PATCH] fix line break error --- utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.py b/utils.py index 23ec97a..6dde672 100644 --- a/utils.py +++ b/utils.py @@ -24,7 +24,7 @@ def send_message(message, destination, interface): wantResponse=False ) destid = get_node_id_from_num(destination, interface) - logging.info(f"Sending message to user '{get_node_short_name(destid, interface)}' ({destid}) with sendID {d.id}: \'{chunk.replace("\n", "\\n")}\'") + logging.info(f"Sending message to user '{get_node_short_name(destid, interface)}' ({destid}) with sendID {d.id}: \"{chunk.replace('\n', '\\n')}\"") except Exception as e: logging.info(f"REPLY SEND ERROR {e.message}")