From 1af6cf3c654930d50959b606b9d2f98c922caaf0 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Tue, 24 Sep 2024 08:48:32 -0500 Subject: [PATCH] another one --- frigate/api/event.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/api/event.py b/frigate/api/event.py index a80628b00..49834bf27 100644 --- a/frigate/api/event.py +++ b/frigate/api/event.py @@ -951,7 +951,7 @@ def regenerate_description(request: Request, event_id: str): event: Event = Event.get(Event.id == event_id) except DoesNotExist: return JSONResponse( - content={"success": False, "message": "Event " + event_id + " not found"}, + content=({"success": False, "message": "Event " + event_id + " not found"}), status_code=404, )