From c5dc44a73f34bede17604bfd052da439dd435a35 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 29 Oct 2024 13:59:04 -0700 Subject: [PATCH] style: simplify command execution output message --- aider/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/commands.py b/aider/commands.py index 09220d9d6..460ddb866 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -1270,7 +1270,7 @@ class Commands: if not cmd or cmd.startswith("#"): continue - self.io.tool_output(f"\nExecuting command: {cmd}") + self.io.tool_output(f"\nExecuting: {cmd}") self.run(cmd) def completions_raw_save(self, document, complete_event):