From 9168331f4b86ebd7eabc2f0670b76d3c79db181c Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sun, 4 Jun 2023 12:04:51 -0700 Subject: [PATCH] bugfix --- aider/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/main.py b/aider/main.py index 5dc3bcc92..f9938fee4 100644 --- a/aider/main.py +++ b/aider/main.py @@ -228,7 +228,7 @@ def main(args=None, input=None, output=None): if args.apply: with open(args.apply, "r") as f: content = f.read() - coder.update_files(content, inp="") + coder.apply_updates(content) return io.tool_output("Use /help to see in-chat commands.")