youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit a1001f47fc19adf983859bb281f08a09bd7f7e9b
parent 16097822582b839a3744b54af90f7b3fd7132d26
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat,  1 Oct 2016 00:16:08 +0700

[instagram] PEP 8

Diffstat:
Myoutube_dl/extractor/instagram.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/youtube_dl/extractor/instagram.py b/youtube_dl/extractor/instagram.py @@ -111,8 +111,8 @@ class InstagramIE(InfoExtractor): 'id': comment.get('id'), 'text': comment.get('text'), 'timestamp': int_or_none(comment.get('created_at')), - } for comment in media.get('comments', {}).get('nodes', []) - if comment.get('text')] + } for comment in media.get( + 'comments', {}).get('nodes', []) if comment.get('text')] if not video_url: video_url = self._og_search_video_url(webpage, secure=False)