youtube-dl

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

commit 4340727e6cbdb55c2d190fe41f38f614a3e3780b
parent 3ceccade87bf9ef8bccf92b353381e04cb32604d
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat,  6 Feb 2016 22:36:30 +0600

[videomore] Fix typo

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

diff --git a/youtube_dl/extractor/videomore.py b/youtube_dl/extractor/videomore.py @@ -114,7 +114,7 @@ class VideomoreIE(InfoExtractor): data = self._download_json( 'http://videomore.ru/video/tracks/%s.json' % video_id, - video_id, 'Downloadinng video JSON') + video_id, 'Downloading video JSON') title = data.get('title') or data['project_title'] description = data.get('description') or data.get('description_raw')