From 0d33fcb2be578ce104e252ce6e5e8251bc58db13 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 28 Aug 2024 11:13:14 -0700 Subject: [PATCH] refactor: Improve git repository selection prompt wording --- aider/main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aider/main.py b/aider/main.py index 8c2178157..890a2934a 100644 --- a/aider/main.py +++ b/aider/main.py @@ -27,7 +27,7 @@ def setup_git_home(io): git_repos = list(home.glob("*/.git")) if git_repos: - io.tool_output("Found existing Git repositories in your home directory:") + io.tool_output("Found git repositories in your home directory:") repo_dict = {} for i, repo in enumerate(git_repos, 1): repo_name = repo.parent.name @@ -36,8 +36,8 @@ def setup_git_home(io): while True: choice = io.prompt_ask( - "Enter the number or name of the repository you want to work on, or ENTER for a new" - " project:" + "Enter the number or name of the repository you want to work on,\nor ENTER for a" + " new project:" ) if not choice.strip():