From d23cb0e6f367c585b1a75b24a9506906a3801312 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Wed, 5 Mar 2025 14:58:28 +0100 Subject: [PATCH] Optimized hints --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 9a350f3..e6c662b 100644 --- a/main.py +++ b/main.py @@ -544,7 +544,7 @@ def list_repositories(all_repos, repositories_base_dir, bin_dir, search_filter=" print(f" Status: {status_str}") # If the repository is installed, display a hint for more info. if os.path.exists(executable_path): - print(f"\nMore information and help: \033[1;4m{identifier} --help\033[0m\n") + print(f"\nMore information and help: \033[1;4mpkgmgr {identifier} --help\033[0m\n") print("-" * 40) # Main program. if __name__ == "__main__":