From ddedd403077b0ab4c56016f175f9b35224922323 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sat, 10 Aug 2024 20:27:03 -0700 Subject: [PATCH] fix: Print text content using Text object in commands.py --- aider/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/commands.py b/aider/commands.py index 4ea0bc311..25b4a168a 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -143,7 +143,7 @@ class Commands: if paginate: with self.io.console.pager(): - self.io.console.print(content) + self.io.console.print(Text(content)) return content