added extra new line for PEP

This commit is contained in:
raphael60650 2021-06-17 23:07:59 +02:00
parent d65e932928
commit 460fe028ea
2 changed files with 1 additions and 1 deletions

View file

@ -1,6 +1,7 @@
import traceback
from tkinter import messagebox
def log_error(self):
error = traceback.format_exc()
with open("./error.log", "a") as f: f.write(f"---\n{error}\n")

View file

@ -30,7 +30,6 @@ def patch_file(self):
except: self.log_error()
finally: self.Progress(show=False)
t = Thread(target=func)
t.setDaemon(True)
t.start()