diff --git a/frigate/http.py b/frigate/http.py index 06fa675c3..29e5449cc 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -1026,7 +1026,9 @@ def vod_ts(camera_name, start_ts, end_ts): @bp.route("/vod////") def vod_hour_no_timezone(year_month, day, hour, camera_name): - return vod_hour(year_month, day, hour, camera_name, get_localzone_name().replace("/", "_")) + return vod_hour( + year_month, day, hour, camera_name, get_localzone_name().replace("/", "_") + ) # TODO make this nicer when vod module is removed