[nova] Minor style improvement
This commit is contained in:
parent
34c0f95db2
commit
a00234f1c5
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ class NovaIE(InfoExtractor):
|
|||
config = self._download_json(
|
||||
config_url, display_id,
|
||||
'Downloading config JSON',
|
||||
transform_source=lambda s: re.sub(r'var\s+[\da-zA-Z_]+\s*=\s*({.+?});', r'\1', s))
|
||||
transform_source=lambda s: s[s.index('{'):s.rindex('}') + 1])
|
||||
|
||||
mediafile = config['mediafile']
|
||||
video_url = mediafile['src']
|
||||
|
|
Loading…
Reference in a new issue