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

fix my mistake on f-string in core.py

This commit is contained in:
mokrunka
2020-12-23 08:56:28 -08:00
parent fe08423827
commit ed2c9dd969

View File

@ -72,7 +72,7 @@ class HackingTool(object):
for index, option in enumerate(self.OPTIONS): for index, option in enumerate(self.OPTIONS):
print(f"[{index + 1}] {option[0]}") print(f"[{index + 1}] {option[0]}")
if self.PROJECT_URL: if self.PROJECT_URL:
print(f"[{98}] Open project page}") print(f"[{98}] Open project page")
print(f"[{99}] Back to {parent.TITLE if parent is not None else 'Exit'}") print(f"[{99}] Back to {parent.TITLE if parent is not None else 'Exit'}")
option_index = input("Select an option : ") option_index = input("Select an option : ")
try: try: