From ed2c9dd9692cf4c33198c6a51b93106488df42e5 Mon Sep 17 00:00:00 2001 From: mokrunka Date: Wed, 23 Dec 2020 08:56:28 -0800 Subject: [PATCH] fix my mistake on f-string in core.py --- core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core.py b/core.py index 1a4fd9f..e37b50e 100644 --- a/core.py +++ b/core.py @@ -72,7 +72,7 @@ class HackingTool(object): for index, option in enumerate(self.OPTIONS): print(f"[{index + 1}] {option[0]}") 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'}") option_index = input("Select an option : ") try: