From f6020f283cfb99413b70de0c0d7c062ea76ddd62 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 29 Aug 2024 09:16:31 -0700 Subject: [PATCH] feat: Add exception reporting and test error in main function --- aider/report.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/aider/report.py b/aider/report.py index 8454e162f..4075b679a 100644 --- a/aider/report.py +++ b/aider/report.py @@ -72,6 +72,9 @@ def report_uncaught_exceptions(): def main(): + report_uncaught_exceptions() + raise ValueError("boo") + title = None if len(sys.argv) > 2: # Use the first command-line argument as the title and the second as the issue text