1
0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2025-03-20 06:39:45 +00:00

Comply with coding conventions

This commit is contained in:
playma 2019-09-27 08:55:48 +08:00
parent 252eb13277
commit 7164b24ca6

View File

@ -107,11 +107,11 @@ class FC2IE(InfoExtractor):
if title_info:
title = title_info[0]
response = self._download_json(
meta = self._download_json(
video_info_url,
video_id,
)
video_url = 'https://video.fc2.com' + response['playlist']['nq']
video_url = 'https://video.fc2.com' + meta.get('playlist').get('nq')
return {
'id': video_id,