From c9ff2ed7e9cf72eac3ffd195ad4da60fa4c1d5f1 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 11 May 2023 09:29:51 -0700 Subject: [PATCH] Added a dump statement to cmd_commit function. --- aider/commands.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aider/commands.py b/aider/commands.py index 69974f7b7..6469b3408 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -67,6 +67,7 @@ class Commands: def cmd_commit(self, args): "Commit edits to chat session files made outside the chat (commit message optional)" + dump(args) if not self.coder.repo: self.console.print("[red]No git repository found.")