summary refs log tree commit diff
diff options
context:
space:
mode:
authorriking <rikingcoding@gmail.com>2014-08-16 14:49:30 -0700
committerriking <rikingcoding@gmail.com>2014-08-16 14:49:30 -0700
commit165250ff5e33d1b246dffaade23b31b4fa3f3b02 (patch)
treef9b9a0e914b475eb5f2ac84bdb3b1d3859c248cc
parent83317f693870424c2c769e4d964453401063fdf1 (diff)
downloadyoutube-dl-165250ff5e33d1b246dffaade23b31b4fa3f3b02.tar.gz
youtube-dl-165250ff5e33d1b246dffaade23b31b4fa3f3b02.tar.xz
youtube-dl-165250ff5e33d1b246dffaade23b31b4fa3f3b02.zip
Remove debug prints
-rw-r--r--youtube_dl/extractor/common.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index 9f6a8a889..45a17f8ad 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -442,14 +442,12 @@ class InfoExtractor(object):
         If there's no info available, return None
         """
         if self._downloader is None:
-            self.to_screen("no downloader")
             return None
         downloader_params = self._downloader.params
 
         if downloader_params.get('twofactor', None) is not None:
             return downloader_params['twofactor']
 
-        self.to_screen("param is None")
         return None
 
     # Helper functions for extracting OpenGraph info