From a6c2e5883399157a9287b368f187ceb901334002 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Wed, 7 Jun 2023 07:35:09 -0600 Subject: [PATCH] Use string --- frigate/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/app.py b/frigate/app.py index b56cb5b75..1ec476060 100644 --- a/frigate/app.py +++ b/frigate/app.py @@ -173,7 +173,7 @@ class FrigateApp: try: with open("/config/.vacuum", "w") as f: - f.write(datetime.datetime.now().timestamp()) + f.write(str(datetime.datetime.now().timestamp())) except PermissionError: logger.error("Unable to write to /config to save DB state")