commit: 6067451e432fb65d487a8a67bb5cff52efb9ccf4
parent 57802e632f5a741df6fd9b30a455c32632944489
Author: df <fieldhouse@gmx.net>
Date: Mon, 20 Feb 2023 01:41:46 +0000
[Vimeo] Fix e19ec52 for tween-age Pythons
* a check in older Pythons in the 2.7 and earlier, 3.3, 3.4 series caused "sre_constants.error: nothing to repeat"
* satisfy the check by avoiding nested qualifiers that can match empty string
Resolves #31597
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/youtube_dl/extractor/vimeo.py b/youtube_dl/extractor/vimeo.py
@@ -286,7 +286,7 @@ class VimeoIE(VimeoBaseInfoExtractor):
/(?!videos|likes)[^/?#]+/?|
(?(q)|/(?P<unlisted_hash>[\da-f]{10}))?
)
- (?:(?(q)[&]|(?(u)|/?)[?]).*?)?(?:[#].*)?$
+ (?:(?(q)[&]|(?(u)|/?)[?]).+?)?(?:[#].*)?$
'''
IE_NAME = 'vimeo'
_TESTS = [