From 161794ac436427df09dd0d6ccc20d7ca72a7507f Mon Sep 17 00:00:00 2001 From: Cohvir <63691557+Cohvir@users.noreply.github.com> Date: Mon, 4 Mar 2024 16:10:28 +0100 Subject: [PATCH] style(config params): config conformity fix --- Src/Api/film.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Src/Api/film.py b/Src/Api/film.py index 4ec6a20..6de8a3b 100644 --- a/Src/Api/film.py +++ b/Src/Api/film.py @@ -97,7 +97,7 @@ def main_dw_film(id_film, title_name, domain): mp4_name = title_name.replace("+", " ").replace(",", "").replace("-", "_") mp4_format = mp4_name + ".mp4" - mp4_path = os.path.join(config['root_path'], config['film_folder_name'], mp4_name, mp4_format) + mp4_path = os.path.join(config['root_path'], config['movies_folder_name'], mp4_name, mp4_format) m3u8_url_audio = get_m3u8_audio(json_win_video, json_win_param, title_name, token_render)