From 00a4452e64df153bb87eb031aa85d05c422a89a4 Mon Sep 17 00:00:00 2001 From: Aleksander Grygierczyk <45162082+AleksanderGPL@users.noreply.github.com> Date: Mon, 19 Dec 2022 08:43:45 +0100 Subject: [PATCH] Remove repeated text --- eCLI.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/eCLI.py b/eCLI.py index e694900..1322a2c 100644 --- a/eCLI.py +++ b/eCLI.py @@ -22,13 +22,13 @@ while True: os.system("clear") elif command == "pcinfo": print(Fore.YELLOW + "=============================================================") - print(Fore.RED + "Computer Name: " + Fore.GREEN + platform.node()) - print(Fore.RED + "Computer Type: " + Fore.GREEN + platform.machine()) - print(Fore.RED + "Computer Arch: " + Fore.GREEN + platform.architecture()[0]) - print(Fore.RED + "Computer OS: " + Fore.GREEN + platform.system()) - print(Fore.RED + "Computer OS Version: " + Fore.GREEN + platform.version()) - print(Fore.RED + "Computer OS Release: " + Fore.GREEN + platform.release()) - print(Fore.RED + "Computer OS Platform: " + Fore.GREEN + platform.platform()) + print(Fore.RED + "PC Name: " + Fore.GREEN + platform.node()) + print(Fore.RED + "PC Type: " + Fore.GREEN + platform.machine()) + print(Fore.RED + "Architecture: " + Fore.GREEN + platform.architecture()[0]) + print(Fore.RED + "OS: " + Fore.GREEN + platform.system()) + print(Fore.RED + "OS Version: " + Fore.GREEN + platform.version()) + print(Fore.RED + "OS Release: " + Fore.GREEN + platform.release()) + print(Fore.RED + "OS Platform: " + Fore.GREEN + platform.platform()) print(Fore.YELLOW + "=============================================================") elif command == "help": print(Fore.YELLOW + "=============================================================")