소스 검색

VeohIE: remove debug logging

Jaime Marquínez Ferrándiz 12 년 전
부모
커밋
3a1375dacf
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      youtube_dl/extractor/veoh.py

+ 1 - 1
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),