Skip to content

Commit

Permalink
Merge branch 'main' of github.com:Aider-AI/aider
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-gauthier committed Feb 15, 2025
2 parents 69fcc3a + da94cf4 commit 185ea71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aider/editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def pipe_editor(input_data="", suffix=None, editor=None):
filepath = write_temp_file(input_data, suffix)
command_parts = discover_editor(editor)
command_parts.append(filepath)
subprocess.call(command_parts)
subprocess.call(command_parts, shell=True)
with open(filepath, "r") as f:
output_data = f.read()
try:
Expand Down

0 comments on commit 185ea71

Please sign in to comment.