aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/downloader/f4m.py
diff options
context:
space:
mode:
Diffstat (limited to 'yt_dlp/downloader/f4m.py')
-rw-r--r--yt_dlp/downloader/f4m.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/downloader/f4m.py b/yt_dlp/downloader/f4m.py
index 12ecec008..7b6665167 100644
--- a/yt_dlp/downloader/f4m.py
+++ b/yt_dlp/downloader/f4m.py
@@ -412,7 +412,7 @@ class F4mFD(FragmentFD):
if box_type == b'mdat':
self._append_fragment(ctx, box_data)
break
- except (compat_urllib_error.HTTPError, ) as err:
+ except compat_urllib_error.HTTPError as err:
if live and (err.code == 404 or err.code == 410):
# We didn't keep up with the live window. Continue
# with the next available fragment.