1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-09-03 08:35:32 +00:00

[cleanup] Misc

This commit is contained in:
pukkandan
2023-01-07 02:48:34 +05:30
parent b382c1fc6a
commit edfc7725b1
8 changed files with 12 additions and 16 deletions

View File

@ -1263,11 +1263,8 @@ class InfoExtractor:
"""
res = self._search_regex(pattern, string, name, default, fatal, flags, group)
if isinstance(res, tuple):
return [clean_html(r).strip() for r in res]
elif res:
return clean_html(res).strip()
else:
return res
return tuple(map(clean_html, res))
return clean_html(res)
def _get_netrc_login_info(self, netrc_machine=None):
username = None