You've already forked hackingtool
mirror of
https://github.com/Z4nzu/hackingtool.git
synced 2025-06-20 06:15:54 +02:00
Minor fixes
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
##!/usr/bin/env python3
|
||||
# -*- coding: UTF-8 -*-
|
||||
#!/usr/bin/env python3
|
||||
# Version 1.1.0
|
||||
import os
|
||||
import sys
|
||||
import webbrowser
|
||||
from platform import system
|
||||
from time import sleep
|
||||
@ -83,10 +83,10 @@ if __name__ == "__main__":
|
||||
[1] Manual
|
||||
[2] Default
|
||||
""")
|
||||
choice = input("Z4nzu =>> ")
|
||||
choice = input("Z4nzu =>> ").strip()
|
||||
|
||||
if choice == "1":
|
||||
inpath = input("Enter Path (with Directory Name) >> ")
|
||||
inpath = input("Enter Path (with Directory Name) >> ").strip()
|
||||
with open(fpath, "w") as f:
|
||||
f.write(inpath)
|
||||
print("Successfully Set Path to: {}".format(inpath))
|
||||
@ -98,7 +98,7 @@ if __name__ == "__main__":
|
||||
sleep(3)
|
||||
else:
|
||||
print("Try Again..!!")
|
||||
exit(0)
|
||||
sys.exit(0)
|
||||
|
||||
with open(fpath) as f:
|
||||
archive = f.readline()
|
||||
|
Reference in New Issue
Block a user