diff options
Diffstat (limited to '')
-rw-r--r-- | yt_dlp/extractor/radiofrance.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/extractor/radiofrance.py b/yt_dlp/extractor/radiofrance.py index 6bd6fe9..ff21963 100644 --- a/yt_dlp/extractor/radiofrance.py +++ b/yt_dlp/extractor/radiofrance.py @@ -126,7 +126,7 @@ class FranceCultureIE(RadioFranceBaseIE): }, { 'url': 'https://www.radiofrance.fr/franceinfo/podcasts/le-billet-sciences/sante-bientot-un-vaccin-contre-l-asthme-allergique-3057200', 'only_matching': True, - } + }, ] def _real_extract(self, url): @@ -150,7 +150,7 @@ class FranceCultureIE(RadioFranceBaseIE): 'uploader': self._html_search_regex( r'(?s)<span class="author">(.*?)</span>', webpage, 'uploader', default=None), 'upload_date': unified_strdate(self._search_regex( - r'"datePublished"\s*:\s*"([^"]+)', webpage, 'timestamp', fatal=False)) + r'"datePublished"\s*:\s*"([^"]+)', webpage, 'timestamp', fatal=False)), } |