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)