mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-12-12 07:42:49 -05:00
remove playlist
argument from BoomplayBaseIE._extract_page_metadata
Will consider `require_title` later if moving title extraction here
This commit is contained in:
parent
1066a94acf
commit
0f9b09842e
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ def _extract_formats(self, item_id, item_type='MUSIC', **kwargs):
|
|||
else:
|
||||
self.raise_no_formats('No formats found')
|
||||
|
||||
def _extract_page_metadata(self, webpage, item_id, playlist=False):
|
||||
def _extract_page_metadata(self, webpage, item_id):
|
||||
metadata_div = self._get_element_by_class_and_tag('summary', 'div', webpage) or ''
|
||||
metadata_entries = re.findall(r'(?si)<strong>(?P<entry>.*?)</strong>', metadata_div) or []
|
||||
description = re.sub(
|
||||
|
|
Loading…
Reference in a new issue