This commit is contained in:
Your Name
2024-06-17 12:34:19 -05:00
parent af3cacae53
commit 92db8a5913

View File

@@ -44,7 +44,7 @@ def launcher(proc: str, name: str, log_path: str) -> None:
except Exception as e: except Exception as e:
# can't install the crash handler because sys.excepthook doesn't play nice # can't install the crash handler because sys.excepthook doesn't play nice
# with threads, so catch it here. # with threads, so catch it here.
with open(log_path, 'a') as file: file.write(e+"\n") with open(log_path, 'a') as file: file.write(str(e)+"\n")
sentry.capture_exception() sentry.capture_exception()
raise raise