Skip to content

Commit

Permalink
Merge pull request Z4nzu#290 from furknozg/SyntaxFix
Browse files Browse the repository at this point in the history
Syntax Fix for older versions of python
  • Loading branch information
Z4nzu authored Dec 3, 2022
2 parents 0a93f70 + 21394cd commit 8af26be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hackingtool.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,12 @@ def show_info(self):
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..!!")
Expand Down

0 comments on commit 8af26be

Please sign in to comment.