From 9b22d6248a6a63e2abccb8f52a2b23f5e4c0f87c Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 1 Oct 2024 11:56:01 -0700 Subject: [PATCH] fix: Swap the order of settings and announcements in the output --- aider/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/commands.py b/aider/commands.py index e2c915391..07afd912e 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -1204,7 +1204,7 @@ class Commands: "Print out the current settings" settings = format_settings(self.parser, self.args) announcements = "\n".join(self.coder.get_announcements()) - output = f"{settings}\n\nAnnouncements:\n{announcements}" + output = f"{announcements}\n{settings}" self.io.tool_output(output) def cmd_copy(self, args):