From 92db8a59138c3d511c29d0f77c9bb5e605fc294c Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 17 Jun 2024 12:34:19 -0500 Subject: [PATCH] wip --- selfdrive/manager/process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/manager/process.py b/selfdrive/manager/process.py index 93ffc98..ba51c6f 100755 --- a/selfdrive/manager/process.py +++ b/selfdrive/manager/process.py @@ -44,7 +44,7 @@ def launcher(proc: str, name: str, log_path: str) -> None: except Exception as e: # can't install the crash handler because sys.excepthook doesn't play nice # 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() raise