diff --git a/hlna.py b/hlna.py index 6bf74ec..bd296e2 100755 --- a/hlna.py +++ b/hlna.py @@ -200,9 +200,9 @@ def print_line(*text, flag="", sep=" ", end="\n"): len_text = str(*text) len_text = len_text.split("\n") max_length = max(len(string) for string in len_text)+2 - print(colorama.Fore.LIGHTGREEN_EX + "." * max_length) + print(color + "." * max_length) print(color, *text, sep=sep, end=end) - print(colorama.Fore.LIGHTGREEN_EX + "." * max_length + colorama.Style.RESET_ALL) + print(color + "." * max_length + colorama.Style.RESET_ALL) def check_int(number=""):