From 1c466bf4529bc9f97bfc0ae676d61eec71e39680 Mon Sep 17 00:00:00 2001 From: Bridget Date: Mon, 13 Apr 2020 23:38:17 +0200 Subject: [PATCH] Colorize connection message, remove divider --- lslsh.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lslsh.py b/lslsh.py index ad9bd2b..0ab7175 100755 --- a/lslsh.py +++ b/lslsh.py @@ -71,11 +71,7 @@ class Shell(cmd.Cmd): for key, value in available_commands.items(): self.add_cmd(key, value) - print(f"Connected to {uuid}") - print( - "_______________________________________________________________________________" - ) - print("") + print(f"{Fore.GREEN}Connected to {uuid}{Fore.RESET}\n") self.url = url def do_exit(self, arg):