diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-02-01 17:40:35 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-02-01 17:40:35 +0800 |
commit | 7537b35fb80061287f6901bcdb6b3f6aae558036 (patch) | |
tree | fef587c8ae42e690641cc320d285f47f29118295 | |
parent | 33cc74eeebe9355f38145d0d6ddc84e5a2dc1af8 (diff) |
[daum] PEP8
-rw-r--r-- | youtube_dl/extractor/daum.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/daum.py b/youtube_dl/extractor/daum.py index cf158c42d..67c4c7c6b 100644 --- a/youtube_dl/extractor/daum.py +++ b/youtube_dl/extractor/daum.py @@ -162,8 +162,8 @@ class DaumListIE(InfoExtractor): for pagenum in itertools.count(1): list_info = self._download_json( 'http://tvpot.daum.net/mypot/json/GetClipInfo.do?size=48&init=true&order=date&page=%d&%s=%s' % ( - pagenum, list_id_type, list_id), list_id,'Downloading list info - %s' % pagenum) - + pagenum, list_id_type, list_id), list_id, 'Downloading list info - %s' % pagenum) + entries.extend([ self.url_result( 'http://tvpot.daum.net/v/%s' % clip['vid']) |