mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-06 20:54:59 +00:00
fix: Swap the order of settings and announcements in the output
This commit is contained in:
parent
729cad640f
commit
9b22d6248a
1 changed files with 1 additions and 1 deletions
|
@ -1204,7 +1204,7 @@ class Commands:
|
||||||
"Print out the current settings"
|
"Print out the current settings"
|
||||||
settings = format_settings(self.parser, self.args)
|
settings = format_settings(self.parser, self.args)
|
||||||
announcements = "\n".join(self.coder.get_announcements())
|
announcements = "\n".join(self.coder.get_announcements())
|
||||||
output = f"{settings}\n\nAnnouncements:\n{announcements}"
|
output = f"{announcements}\n{settings}"
|
||||||
self.io.tool_output(output)
|
self.io.tool_output(output)
|
||||||
|
|
||||||
def cmd_copy(self, args):
|
def cmd_copy(self, args):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue