From 7f72d2a70324caadbd1efa5a8d95f8d1ce8c1643 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 6 Dec 2024 13:55:41 -0800 Subject: [PATCH] reraise EOFError to fix control-d --- aider/io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/io.py b/aider/io.py index 226a50c25..0d3f3c88d 100644 --- a/aider/io.py +++ b/aider/io.py @@ -497,7 +497,7 @@ class InputOutput: return cmd except EOFError: - return "" + raise except Exception as err: import traceback