From 5157b9fc2ed748fa9ac4e7171a2ce5f847d53d89 Mon Sep 17 00:00:00 2001 From: mokrunka Date: Tue, 15 Dec 2020 10:30:24 -0800 Subject: [PATCH] update some typos; clearly print the path for install regardless of install option --- hackingtool.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hackingtool.py b/hackingtool.py index 0ef91a3..7514d80 100644 --- a/hackingtool.py +++ b/hackingtool.py @@ -79,7 +79,7 @@ if __name__ == "__main__": os.system('clear') # run.menu() print(""" - [@] Set Path (All your tools will be install in that directory) + [@] Set Path (All your tools will be installed in that directory) [1] Manual [2] Default """) @@ -89,12 +89,12 @@ if __name__ == "__main__": inpath = input("Enter Path (with Directory Name) >> ") with open(fpath, "w") as f: f.write(inpath) - print("Successfully Path Set...!!") + print(f"Successfully Set Path to: {inpath}") elif choice == "2": autopath = "/home/hackingtool/" with open(fpath, "w") as f: f.write(autopath) - print(f"Your Default Path Is:- {autopath}") + print(f"Your Default Path Is: {autopath}") sleep(3) else: print("Try Again..!!") @@ -111,12 +111,12 @@ if __name__ == "__main__": # If not Linux and probably Windows elif system() == "Windows": print( - "\033[91m Please Run This Tool In Debian System For Best Result " "\e[00m") + "\033[91m Please Run This Tool On A Debian System For Best Results " "\e[00m") sleep(2) webbrowser.open_new_tab("https://tinyurl.com/y522modc") else: - print("Please Check Your Sytem or Open new issue ...") + print("Please Check Your System or Open New Issue ...") except KeyboardInterrupt: print("\nExiting ..!!!")