From 13eec4f3d4081fdc43883c5ef02e471a2b6c7212 Mon Sep 17 00:00:00 2001 From: AUTOMATIC <16777216c@gmail.com> Date: Sat, 10 Sep 2022 14:53:38 +0300 Subject: changed

to
in info field to prevent double line breaks when copying added new features to the list. --- modules/ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/ui.py') diff --git a/modules/ui.py b/modules/ui.py index 149c5115..6898f8a8 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -54,7 +54,7 @@ css_hide_progressbar = """ """ def plaintext_to_html(text): - text = "".join([f"

{html.escape(x)}

\n" for x in text.split('\n')]) + text = "

" + "
\n".join([f"{html.escape(x)}" for x in text.split('\n')]) + "

" return text -- cgit v1.2.3