mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 02:05:00 +00:00
Fix string interpolation typo in linter output message.
This commit is contained in:
parent
e516f838f5
commit
f43b352949
1 changed files with 4 additions and 2 deletions
|
@ -46,9 +46,11 @@ class Linter:
|
|||
except subprocess.CalledProcessError as err:
|
||||
errors = err.output.decode() # non-zero exit status
|
||||
|
||||
res = "# Running: {cmd]\n"
|
||||
res = f"# Running: {cmd}\n"
|
||||
res += "If the output below indicates errors or problems, fix them.\n"
|
||||
res += "But if the command fixed all the issues itself, don't take further action.\n\n"
|
||||
res += (
|
||||
"But if the command says it fixed all the issues itself, don't take further action.\n\n"
|
||||
)
|
||||
res += errors
|
||||
|
||||
return res
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue