youtube-dl

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

commit 4d8ee01389c4229f14fad45f0aa7b033a2509aef
parent d01924f48810db69d572bc121ab98021f04ac957
Author: Sergey M․ <dstftw@gmail.com>
Date:   Thu, 21 May 2015 02:38:43 +0600

[viki] Fix typo

Diffstat:
Myoutube_dl/extractor/viki.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/viki.py b/youtube_dl/extractor/viki.py @@ -157,7 +157,7 @@ class VikiIE(VikiBaseIE): title = 'Episode %d' % video.get('number') if video.get('type') == 'episode' else video.get('id') or video_id container_titles = video.get('container', {}).get('titles') if container_titles: - container_title = container_titles.get('en') or container_titles[titles.keys()[0]] + container_title = container_titles.get('en') or container_titles[container_titles.keys()[0]] title = '%s - %s' % (container_title, title) descriptions = video.get('descriptions')