[extractor/fosdem] Use re.DOTALL for html search for description

This commit is contained in:
Jesse Millwood 2023-04-30 09:09:22 -04:00 committed by Jesse Millwood
parent 33aac01e30
commit 36a1f6294c

View file

@ -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}/.+)\">"