From 8e47688dc939876ae4d768f984cd23452af1603a Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Wed, 8 May 2024 09:34:13 -0500 Subject: [PATCH] ensure str --- frigate/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/app.py b/frigate/app.py index d877eca2c..c2a489b75 100644 --- a/frigate/app.py +++ b/frigate/app.py @@ -614,7 +614,7 @@ class FrigateApp: print("*************************************************************") if isinstance(e, ValidationError): for error in e.errors(): - location = ".".join(error["loc"]) + location = ".".join(str(item) for item in error["loc"]) print(f"{location}: {error['msg']}") else: print(e)