mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-02 02:34:59 +00:00
fix: Update string formatting in confirm_ask calls
This commit is contained in:
parent
ad77fe20b5
commit
9fb3a6f8e1
2 changed files with 2 additions and 2 deletions
|
@ -282,7 +282,7 @@ def check_pip_install_extra(io, module, prompt, pip_install_cmd):
|
|||
cmd = get_pip_install(pip_install_cmd)
|
||||
|
||||
io.tool_error(prompt)
|
||||
if not io.confirm_ask("Run pip install?", default="y", subject=' '.join(cmd)):
|
||||
if not io.confirm_ask("Run pip install?", default="y", subject=" ".join(cmd)):
|
||||
return
|
||||
|
||||
success, output = run_install(cmd)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue