From 80114e7a24faa004d7131f47364a28f8fae8d694 Mon Sep 17 00:00:00 2001 From: "Andrew Grigorev (aider)" Date: Sat, 12 Apr 2025 17:48:52 +0300 Subject: [PATCH] chore: revert intentional break introduced for testing --- aider/repo.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/aider/repo.py b/aider/repo.py index 4ba96d920..7e04d89ee 100644 --- a/aider/repo.py +++ b/aider/repo.py @@ -153,12 +153,7 @@ class GitRepo: # Determine author/committer modification and trailer - # --- Intentionally break the behavior for testing --- - original_attribute_co_authored_by = attribute_co_authored_by # Keep original value if needed elsewhere - attribute_co_authored_by = False # Force to False to ignore the setting - # --- End intentional break --- - - if attribute_co_authored_by: # This condition will now always be false + if attribute_co_authored_by: model_name = "unknown-model" if coder and hasattr(coder, "main_model") and coder.main_model.name: model_name = coder.main_model.name