youtube-dl

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

commit 7593fbaa126f8bf14eecff7f103cb497e3d31de5
parent 2eb0f72a0ea6bdbf6889efe34027a534a3473a03
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun, 18 Oct 2015 01:00:37 +0600

[dailymotion] Error spelling

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

diff --git a/youtube_dl/extractor/dailymotion.py b/youtube_dl/extractor/dailymotion.py @@ -254,8 +254,8 @@ class DailymotionIE(DailymotionBaseInfoExtractor): def _check_error(self, info): if info.get('error') is not None: - msg = 'Couldn\'t get video, Dailymotion says: %s' % info['error']['title'] - raise ExtractorError(msg, expected=True) + raise ExtractorError( + '%s said: %s' % (self.IE_NAME, info['error']['title']), expected=True) def _get_subtitles(self, video_id, webpage): try: