We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d178af5 commit 7d2a0b4Copy full SHA for 7d2a0b4
youtube_dl/extractor/francetv.py
@@ -331,9 +331,9 @@ def _real_extract(self, url):
331
class FranceTVEmbedIE(FranceTVBaseIE):
332
_VALID_URL = r'''(?x)
333
https?://embed\.francetv\.fr(?:/?\?(?:.*&)?(?P<ue>ue)=|/)
334
- # Say (?:...|) instead of (?:...)? when ... ends .* to avoid
+ # Say (?:|...) instead of (?:...)? when ... ends .* to avoid
335
# python/cpython#62847 (fixed from at least 3.5 and late 2.7)
336
- (?P<id>[\da-f]{32})(?:(?(ue)&|/?[?#]).*|)$```
+ (?P<id>[\da-f]{32})(?:|(?(ue)&|/?[?#]).*)$
337
'''
338
_TESTS = [{
339
'url': 'http://embed.francetv.fr/?ue=7fd581a2ccf59d2fc5719c5c13cf6961',
0 commit comments