From d2345731b44e8e0532ed2b968b908ef54fc6b41f Mon Sep 17 00:00:00 2001 From: Federico Poni Date: Mon, 1 Jul 2024 22:29:21 +0200 Subject: [PATCH] app.py --- app.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 4fb2f2b..30f81a3 100644 --- a/app.py +++ b/app.py @@ -384,7 +384,7 @@ def main(): print("4. Generate the website") print("5. Delete a project") print("6. Exit") - choice = input("Enter your choice (1, 2, 3, 4, or 5): ") + choice = input("Enter your choice (1, 2, 3, 4, 5 or 6): ") if choice == '1': generate_template() @@ -399,7 +399,8 @@ def main(): elif choice == '6': exit() else: - print("Invalid choice. Please enter 1, 2, 3, or 4.") + print("Invalid choice. Please enter 1, 2, 3, 4, 5 or 6.") + main() if __name__ == "__main__": main()