1
0
mirror of https://github.com/Z4nzu/hackingtool.git synced 2025-06-20 06:15:54 +02:00

Minor fixes

This commit is contained in:
Christian Clauss
2023-03-04 16:02:23 +01:00
committed by GitHub
parent 4dcfd331fc
commit e885d19f8a
5 changed files with 15 additions and 18 deletions

View File

@ -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()