VeohIE: remove debug logging
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Tue, 9 Jul 2013 09:11:55 +0000 (11:11 +0200)
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Tue, 9 Jul 2013 09:11:55 +0000 (11:11 +0200)
youtube_dl/extractor/veoh.py

index c1f8271f12f2e1747ee28618b59ff069dd02caad..00672c9e5f4bdb5f2c33112bdee4d97022b24e9f 100644 (file)
@@ -35,7 +35,7 @@ class VeohIE(InfoExtractor):
         info = self._search_regex(r'videoDetailsJSON = \'({.*?})\';', webpage, 'info')
         info = json.loads(info)
         video_url =  info.get('fullPreviewHashHighPath') or info.get('fullPreviewHashLowPath')
-        self.to_screen(video_url)
+
         return {'id': info['videoId'], 
                 'title': info['title'],
                 'ext': determine_ext(video_url),