From a9cf438100968febf87b24be7cda5604351a86ff Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 10 Jan 2025 14:26:06 -0800 Subject: [PATCH] refactor: Update terminal detection message to include pretty output --- aider/io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/io.py b/aider/io.py index 06f0e5350..269428197 100644 --- a/aider/io.py +++ b/aider/io.py @@ -277,7 +277,7 @@ class InputOutput: else: self.console = Console(force_terminal=False, no_color=True) # non-pretty if self.is_dumb_terminal: - self.tool_output("Detected dumb terminal, disabling fancy input.") + self.tool_output("Detected dumb terminal, disabling fancy input and pretty output.") self.file_watcher = file_watcher self.root = root