From: remitamine Date: Thu, 17 Dec 2015 11:51:50 +0000 (+0100) Subject: [youku] check for the correct variable X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=35e22b6b32d0e662d486c9be8c76f6ea86f7cdd4;p=youtube-dl [youku] check for the correct variable --- diff --git a/youtube_dl/extractor/youku.py b/youtube_dl/extractor/youku.py index d33caa79e..3a3432be8 100644 --- a/youtube_dl/extractor/youku.py +++ b/youtube_dl/extractor/youku.py @@ -221,7 +221,7 @@ class YoukuIE(InfoExtractor): 'Youku said: Sorry, this video is available in China only', expected=True) else: msg = 'Youku server reported error %i' % error.get('code') - if error is not None: + if error_note is not None: msg += ': ' + error_note raise ExtractorError(msg)