From 7d2a0b425fed30603defec1f4cf7d0a7777f7f32 Mon Sep 17 00:00:00 2001 From: dirkf Date: Thu, 15 May 2025 17:28:53 +0100 Subject: [PATCH] And again --- youtube_dl/extractor/francetv.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/youtube_dl/extractor/francetv.py b/youtube_dl/extractor/francetv.py index 9802442cc..bbbcacb93 100644 --- a/youtube_dl/extractor/francetv.py +++ b/youtube_dl/extractor/francetv.py @@ -331,9 +331,9 @@ class FranceTVIE(InfoExtractor): class FranceTVEmbedIE(FranceTVBaseIE): _VALID_URL = r'''(?x) https?://embed\.francetv\.fr(?:/?\?(?:.*&)?(?Pue)=|/) - # Say (?:...|) instead of (?:...)? when ... ends .* to avoid + # Say (?:|...) instead of (?:...)? when ... ends .* to avoid # python/cpython#62847 (fixed from at least 3.5 and late 2.7) - (?P[\da-f]{32})(?:(?(ue)&|/?[?#]).*|)$``` + (?P[\da-f]{32})(?:|(?(ue)&|/?[?#]).*)$ ''' _TESTS = [{ 'url': 'http://embed.francetv.fr/?ue=7fd581a2ccf59d2fc5719c5c13cf6961',