mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-12-04 20:36:44 +00:00
[extractor/fosdem] Use re.DOTALL for html search for description
This commit is contained in:
parent
33aac01e30
commit
36a1f6294c
|
@ -1,4 +1,5 @@
|
|||
from .common import InfoExtractor
|
||||
import re
|
||||
import pdb
|
||||
|
||||
class FosdemIE(InfoExtractor):
|
||||
|
@ -46,7 +47,7 @@ def _real_extract(self, url):
|
|||
evnt_blurb = self._html_search_regex(evnt_blurb_rgx,
|
||||
webpage,
|
||||
'event blurb',
|
||||
group='blurb')
|
||||
group='blurb', flags=re.DOTALL)
|
||||
description = evnt_blurb
|
||||
print(f"DESCRIPTION: {description}")
|
||||
video_url_rgx = r"<li><a href=\"(https://video.fosdem.org/[0-9]{4}/.+)\">"
|
||||
|
|
Loading…
Reference in a new issue