aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-07-09 11:11:55 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-07-09 11:11:55 +0200
commit3a1375dacf534e58e7e2e8ee3f84e9fb8d0f4ea4 (patch)
tree2ff1dcdd0dfe88cb5313f891d47686289e4cfc41
parent41bece30b4f9135357251a822c6dea1244e51814 (diff)
downloadyoutube-dl-3a1375dacf534e58e7e2e8ee3f84e9fb8d0f4ea4.tar.xz
VeohIE: remove debug logging
-rw-r--r--youtube_dl/extractor/veoh.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/veoh.py b/youtube_dl/extractor/veoh.py
index c1f8271f1..00672c9e5 100644
--- a/youtube_dl/extractor/veoh.py
+++ b/youtube_dl/extractor/veoh.py
@@ -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),