[unauthorizedtv] Collapse lines to single line

This commit is contained in:
Kevin G 2019-06-09 03:00:54 -07:00
parent 158ebb2182
commit 167f89fc6f

View File

@ -25,12 +25,7 @@ class UnauthorizedTvIE(InfoExtractor):
html = self._download_webpage(url, video_id)
csrf_token = self._html_search_meta(
'csrf-token',
html,
'csrf token',
default=None
)
csrf_token = self._html_search_meta('csrf-token', html, 'csrf token', default=None)
headers = {
'Referer': url,