mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 08:44:59 +00:00
fix: Use Text() to format user input in console.print()
This commit is contained in:
parent
9b4211fd85
commit
543fa68b45
1 changed files with 1 additions and 1 deletions
|
@ -330,7 +330,7 @@ class InputOutput:
|
|||
def user_input(self, inp, log_only=True):
|
||||
if not log_only:
|
||||
style = dict(style=self.user_input_color) if self.user_input_color else dict()
|
||||
self.console.print(inp, **style)
|
||||
self.console.print(Text(inp), **style)
|
||||
|
||||
prefix = "####"
|
||||
if inp:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue