From 55699412eaef60a7743e2e73e444f6b8491e43c9 Mon Sep 17 00:00:00 2001 From: xpamych Date: Fri, 2 Jun 2023 16:21:07 +0300 Subject: [PATCH] =?UTF-8?q?+2=20=D0=BA=20len?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hlna.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hlna.py b/hlna.py index 6c4d08e..3357df0 100755 --- a/hlna.py +++ b/hlna.py @@ -197,7 +197,7 @@ def print_line(*text, flag="", sep=" ", end="\n"): color = colorama.Fore.CYAN else: color = colorama.Fore.WHITE - len_text = len(*text) + len_text = len(*text)+2 print(colorama.Fore.LIGHTGREEN_EX + "." * len_text) print(color, *text, sep=sep, end=end) print(colorama.Fore.LIGHTGREEN_EX + "." * len_text + colorama.Style.RESET_ALL)