[cleanup, utils] Don't use kwargs for format_field
This commit is contained in:
parent
e121e3cee7
commit
a70635b8a1
25 changed files with 32 additions and 32 deletions
|
|
@ -100,7 +100,7 @@ class VidLiiIE(InfoExtractor):
|
|||
uploader = self._search_regex(
|
||||
r'<div[^>]+class=["\']wt_person[^>]+>\s*<a[^>]+\bhref=["\']/user/[^>]+>([^<]+)',
|
||||
webpage, 'uploader', fatal=False)
|
||||
uploader_url = format_field(uploader, template='https://www.vidlii.com/user/%s')
|
||||
uploader_url = format_field(uploader, None, 'https://www.vidlii.com/user/%s')
|
||||
|
||||
upload_date = unified_strdate(self._html_search_meta(
|
||||
'datePublished', webpage, default=None) or self._search_regex(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue