From c4855c84dabde54a929f4ec978b1be26cd84f726 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 20 Aug 2024 13:31:13 -0700 Subject: [PATCH] fix: Remove unnecessary metadata from EditBlockCoder --- aider/coders/editblock_coder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/coders/editblock_coder.py b/aider/coders/editblock_coder.py index 8f4a5a04b..c7e61fbae 100644 --- a/aider/coders/editblock_coder.py +++ b/aider/coders/editblock_coder.py @@ -429,7 +429,7 @@ def find_original_update_blocks(content, fence=DEFAULT_FENCE): if pieces and pieces[-1].strip().startswith("```"): pieces.pop() # Remove the closing ``` shell_type = cur.strip().split("```")[1] - yield f"{shell_type}_command", "".join(shell_content), "" + yield "".join(shell_content) continue if cur in (DIVIDER, UPDATED):