From 9f1b268740fd203039c6fdb4f2f070ea754bee6f Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 29 Aug 2024 07:31:18 -0700 Subject: [PATCH] fix: remove unused exception variable in report_github_issue function --- aider/report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/report.py b/aider/report.py index c5971853f..38a98f793 100644 --- a/aider/report.py +++ b/aider/report.py @@ -29,7 +29,7 @@ def report_github_issue(issue_text, title=None): print("Browser window should be opened.") else: print("Unable to open browser window automatically.") - except Exception as e: + except Exception: print() print("Please use this URL to file a GitHub issue:") print()