diff options
author | dirkf <fieldhouse@gmx.net> | 2022-10-13 02:42:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-13 02:42:49 +0000 |
commit | ee8560d01eec511587f8207c3d84219ec620a9a6 (patch) | |
tree | 2241137e377bf357c828bf3f8015ae98dd3f506d | |
parent | 7135277fec497bd7649c31087aba52daa7897484 (diff) | |
download | youtube-dl-ee8560d01eec511587f8207c3d84219ec620a9a6.tar.gz youtube-dl-ee8560d01eec511587f8207c3d84219ec620a9a6.tar.xz |
[ManyVids] Support new single-page app structure
-rw-r--r-- | youtube_dl/extractor/manyvids.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/manyvids.py b/youtube_dl/extractor/manyvids.py index 608a02a8d..75978cfd6 100644 --- a/youtube_dl/extractor/manyvids.py +++ b/youtube_dl/extractor/manyvids.py @@ -50,7 +50,7 @@ class ManyVidsIE(InfoExtractor): real_url = 'https://www.manyvids.com/video/%s/gtm.js' % (video_id, ) try: webpage = self._download_webpage(real_url, video_id) - except: + except Exception: # probably useless fallback webpage = self._download_webpage(url, video_id) |