From e60755bd03bc7753c3f6ee14aed360e5ab106a03 Mon Sep 17 00:00:00 2001 From: Aman Rusia Date: Thu, 31 Oct 2024 18:53:46 +0530 Subject: [PATCH] Print fix --- src/wcgw/client/tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wcgw/client/tools.py b/src/wcgw/client/tools.py index cf9a6c0..1974963 100644 --- a/src/wcgw/client/tools.py +++ b/src/wcgw/client/tools.py @@ -442,7 +442,7 @@ def file_edit(file_edit: FileEditFindReplace) -> str: in_string = "\n".join( "< " + line for line in file_edit.replace_with_lines.split("\n") ) - console.log(f"Editing file: {path_}---\n{out_string}\n---{in_string}\n---") + console.log(f"Editing file: {path_}\n---\n{out_string}\n---\n{in_string}\n---") try: with open(path_) as f: content = f.read()