mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-11 03:47:34 +00:00
remove unnecessary symbolic name for group
This commit is contained in:
parent
7e0480ae0e
commit
fd40bdc0be
@ -31,7 +31,6 @@ class SnagFilmsIE(InfoExtractor):
|
|||||||
r'"data":{"film":(?P<data>{.*?}})}',
|
r'"data":{"film":(?P<data>{.*?}})}',
|
||||||
webpage,
|
webpage,
|
||||||
'data',
|
'data',
|
||||||
group='data'
|
|
||||||
), display_id)
|
), display_id)
|
||||||
title = json_data['title']
|
title = json_data['title']
|
||||||
video_id = json_data['id']
|
video_id = json_data['id']
|
||||||
@ -44,7 +43,6 @@ class SnagFilmsIE(InfoExtractor):
|
|||||||
r'sources: (?P<sources>\[.*?\])',
|
r'sources: (?P<sources>\[.*?\])',
|
||||||
embed_webpage,
|
embed_webpage,
|
||||||
'sources',
|
'sources',
|
||||||
group='sources',
|
|
||||||
flags=DOTALL
|
flags=DOTALL
|
||||||
)), video_id)
|
)), video_id)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user