From 04d935b0bebf2e41b1da4c68efa2149d6aa59f4b Mon Sep 17 00:00:00 2001 From: Fline <45824466+Flxne@users.noreply.github.com> Date: Thu, 11 Apr 2024 15:13:01 +0200 Subject: [PATCH] Update url_fix.py --- Src/Lib/FFmpeg/util/url_fix.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Src/Lib/FFmpeg/util/url_fix.py b/Src/Lib/FFmpeg/util/url_fix.py index f679c80..484e544 100644 --- a/Src/Lib/FFmpeg/util/url_fix.py +++ b/Src/Lib/FFmpeg/util/url_fix.py @@ -33,7 +33,7 @@ class M3U8_UrlFix: # Check if m3u8 url playlist is present if self.url_playlist == None: - logging.error("[M3U8_UrlFix] Cant generate full url, playlist not present") + logging.error("[M3U8_UrlFix] Can't generate full url, playlist not present") sys.exit(0) # Parse the playlist URL to extract the base URL components @@ -45,4 +45,4 @@ class M3U8_UrlFix: # Join the base URL with the relative resource URL to get the full URL full_url = urljoin(base_url, url_resource) - return full_url \ No newline at end of file + return full_url