From f235bc1186df09a63bb8bd67a405a0eeac2e5164 Mon Sep 17 00:00:00 2001 From: Richard Mwewa <74001397+rly0nheart@users.noreply.github.com> Date: Fri, 23 Dec 2022 17:35:10 +0200 Subject: [PATCH] Update main.py --- octosuite/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/octosuite/main.py b/octosuite/main.py index addd667..f6a5b8e 100644 --- a/octosuite/main.py +++ b/octosuite/main.py @@ -9,7 +9,6 @@ def octosuite(): clear_screen() configure_logging() check_updates() - xprint(banner()[0], banner()[1]) if args.module == "user_profile": run.user_profile() elif args.module == "user_repos": @@ -65,6 +64,7 @@ def octosuite(): Main loop keeps octosuite running, this will break if Octosuite detects a KeyboardInterrupt (Ctrl+C) or if the 'exit' command is entered. """ + xprint(banner()[0], banner()[1]) while True: xprint(f"{white}┌──({red}{getpass.getuser()}{white}@{red}octosuite{white})\n├──[~{green}{os.getcwd()}{white}]\n└╼ {reset}",end="") command_input = input().lower()