1
0
Fork 0

[cleanup] Misc

This commit is contained in:
pukkandan 2023-01-07 02:48:34 +05:30
commit edfc7725b1
No known key found for this signature in database
GPG key ID: 7EEE9E1E817D0A39
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