fix: escape GUI log newline in review patch

This commit is contained in:
Aaron Liang
2026-07-14 22:53:12 +08:00
parent ce016d5b08
commit 800248d646
+1 -1
View File
@@ -28,7 +28,7 @@ replacement = r'''app = between(app, " def log(self, message):\n", " def s
pass
def _append_log_line(self, line):
self.log_text.insert(tk.END, f"{line}\n")
self.log_text.insert(tk.END, f"{line}\\n")
self.log_text.see(tk.END)
def log(self, message):