From 0fc9e5b1246f22f5ba1cf0ea3fbc5752af955697 Mon Sep 17 00:00:00 2001 From: Kryomaani <72695-Kryomaani@users.noreply.gitgud.io> Date: Tue, 24 Dec 2024 18:01:04 +0000 Subject: [PATCH] The estimate gets eaten without a sacrifical csv.tmp --- modules/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/main.py b/modules/main.py index 92807c0..7186fc3 100644 --- a/modules/main.py +++ b/modules/main.py @@ -146,7 +146,8 @@ files to translate are in the /files folder and that you picked the right game e tqdm.write(Fore.RED + str(e) + "|" + tracebackLineNo + Fore.RESET) # Delete Tmp Files - os.remove("csv.tmp") + if os.path.isfile("csv.tmp"): + os.remove("csv.tmp") # Finish if totalCost != "Fail":