From a7742e1706b691fde9c57ea7b355bd406e6746ab Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 29 Aug 2024 12:59:24 -0700 Subject: [PATCH] copy --- aider/report.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aider/report.py b/aider/report.py index 6b0b57828..eafdfb402 100644 --- a/aider/report.py +++ b/aider/report.py @@ -7,7 +7,7 @@ import webbrowser from aider import __version__ from aider.urls import github_issues -FENCE = "`"*3 +FENCE = "`" * 3 def report_github_issue(issue_text, title=None): @@ -31,7 +31,7 @@ def report_github_issue(issue_text, title=None): print(issue_text.strip()) print() print("Please consider reporting this bug to help improve aider!") - prompt = "Report this as a GitHub Issue using your browser? (Y/n) " + prompt = "Open a GitHub Issue pre-filled with the above error in your browser? (Y/n) " confirmation = input(prompt).strip().lower() yes = not confirmation or confirmation.startswith("y")