From 8f390d55b9535e0b996a04d48fc8d0f47748e6ce Mon Sep 17 00:00:00 2001 From: Looki2000 Date: Thu, 29 Feb 2024 22:22:36 +0100 Subject: [PATCH] Update recent project prompt message --- cli_ui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli_ui.py b/cli_ui.py index bb83213..95a2aa6 100644 --- a/cli_ui.py +++ b/cli_ui.py @@ -73,14 +73,14 @@ def cli_main(): try: with open("last_path_cache.txt", "r") as file: last_path = file.read() - choices.append(f"Open last project ({os.path.basename(last_path)})") + choices.append(f"Open recent project ({os.path.basename(last_path)})") except FileNotFoundError: last_path = None choice = get_choice( - "What do you want to do?" + " No last opened project found." if last_path is None else "", + "What do you want to do?" + " No recently opened project found." if last_path is None else "", choices )