From: Yen Chi Hsuan Date: Thu, 7 May 2015 10:05:37 +0000 (+0800) Subject: [vice] Remove a redundant print X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=youtube-dl;a=commitdiff_plain;h=d9a743d9178b0ed1e44168e42e8cec2d7dd8d63e [vice] Remove a redundant print --- diff --git a/youtube_dl/extractor/vice.py b/youtube_dl/extractor/vice.py index 71f520fb5..04e2b0ba7 100644 --- a/youtube_dl/extractor/vice.py +++ b/youtube_dl/extractor/vice.py @@ -31,7 +31,6 @@ class ViceIE(InfoExtractor): r'embedCode=([^&\'"]+)', webpage, 'ooyala embed code') ooyala_url = OoyalaIE._url_for_embed_code(embed_code) - print(ooyala_url) except ExtractorError: raise ExtractorError('The page doesn\'t contain a video', expected=True) return self.url_result(ooyala_url, ie='Ooyala')