Unverified Commit 8af26be0 authored by Hardik Zinzuvadiya's avatar Hardik Zinzuvadiya Committed by GitHub
Browse files

Merge pull request #290 from furknozg/SyntaxFix

Syntax Fix for older versions of python
parents 0a93f706 21394cda
Loading
Loading
Loading
Loading

hackingtool.py

100644 → 100755
+2 −2
Original line number Diff line number Diff line
@@ -89,12 +89,12 @@ if __name__ == "__main__":
                    inpath = input("Enter Path (with Directory Name) >> ")
                    with open(fpath, "w") as f:
                        f.write(inpath)
                    print(f"Successfully Set Path to: {inpath}")
                    print("Successfully Set Path to: {}".format(inpath))
                elif choice == "2":
                    autopath = "/home/hackingtool/"
                    with open(fpath, "w") as f:
                        f.write(autopath)
                    print(f"Your Default Path Is: {autopath}")
                    print("Your Default Path Is: {}".format(autopath))
                    sleep(3)
                else:
                    print("Try Again..!!")