mirror of
https://github.com/Z4nzu/hackingtool
synced 2026-05-23 17:08:25 +00:00
Merge pull request #290 from furknozg/SyntaxFix
Syntax Fix for older versions of python
This commit is contained in:
commit
8af26be04f
1 changed files with 2 additions and 2 deletions
4
hackingtool.py
Normal file → Executable file
4
hackingtool.py
Normal file → Executable file
|
|
@ -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..!!")
|
||||
|
|
|
|||
Loading…
Reference in a new issue