From c923966c9804883fb89bafdffc5443c2b033b8e9 Mon Sep 17 00:00:00 2001 From: raphael60650 Date: Sat, 20 Nov 2021 18:03:23 +0100 Subject: [PATCH] added newline to error to make it more readable --- source/Gui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Gui.py b/source/Gui.py index 09d4e0b..8d9dfaa 100644 --- a/source/Gui.py +++ b/source/Gui.py @@ -289,8 +289,8 @@ class Gui: with open("./error.log", "a") as f: f.write(f"---\n" f"For game version : {self.game.ctconfig.version}\n" - f"./file/ directory : {os.listdir('./file/')}" - f"GAME/files/ information : {self.game.path, self.game.region}" + f"./file/ directory : {os.listdir('./file/')}\n" + f"GAME/files/ information : {self.game.path, self.game.region}\n" f"{error}\n") messagebox.showerror(self.translate("Error"), self.translate("An error occured", " :", "\n", error, "\n\n"))