X-Git-Url: https://git.rapsys.eu/youtubedl/blobdiff_plain/099764c0c91f4ad7db03d9347798f8619383ea7e..7df4343e553a9942a290e5e1dffe931261ab844e:/youtube_dl/extractor/vice.py diff --git a/youtube_dl/extractor/vice.py b/youtube_dl/extractor/vice.py index f11ca82..04e2b0b 100644 --- a/youtube_dl/extractor/vice.py +++ b/youtube_dl/extractor/vice.py @@ -31,8 +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') -