summary refs log tree commit diff
diff options
context:
space:
mode:
authorh-collector <githcoll@gmail.com>2014-07-07 22:47:28 +0200
committerh-collector <githcoll@gmail.com>2014-10-20 18:53:53 +0200
commit5a000b45b339f6516f2a5a3bdfd2869713e8438a (patch)
tree7dbafda0182df9ac585ff76d7b280ae27241bed6
parent40b1cbafacea338e51d43fa78438eaf21a1bcbcd (diff)
downloadyoutube-dl-5a000b45b339f6516f2a5a3bdfd2869713e8438a.tar.gz
youtube-dl-5a000b45b339f6516f2a5a3bdfd2869713e8438a.tar.xz
youtube-dl-5a000b45b339f6516f2a5a3bdfd2869713e8438a.zip
Don't use report_warning for reporting warnings
In tests warning is converted to error
-rw-r--r--youtube_dl/extractor/fc2.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/fc2.py b/youtube_dl/extractor/fc2.py
index 0933485e0..3073ab0d4 100644
--- a/youtube_dl/extractor/fc2.py
+++ b/youtube_dl/extractor/fc2.py
@@ -33,7 +33,7 @@ class FC2IE(InfoExtractor):
     def _login(self):
         (username, password) = self._get_login_info()
         if (username is None) or (password is None):
-           self._downloader.report_warning('unable to log in: will be downloading in non authorized mode')
+           self.to_screen('unable to log in: will be downloading in non authorized mode') # report_warning
            return False
 
         # Log in
@@ -53,7 +53,7 @@ class FC2IE(InfoExtractor):
 
         login_results = self._download_webpage(request, None, note='Logging in', errnote='Unable to log in')
         if 'mode=redirect&login=done' not in login_results:
-            self._downloader.report_warning('unable to log in: bad username or password')
+            self.to_screen('unable to log in: bad username or password') # report_warning
             return False
         
         # this is also needed
@@ -87,7 +87,7 @@ class FC2IE(InfoExtractor):
         if 'err_code' in info:
             #raise ExtractorError('Error code: %s' % info['err_code'][0])
             # most of the time we can still download wideo even if err_code is 403 or 602
-            self._downloader.report_warning('Error code was: %s... but still trying' % info['err_code'][0])
+            self.to_screen('Error code was: %s... but still trying' % info['err_code'][0]) # report_warning
 
         if 'filepath' not in info:
             raise ExtractorError('Cannot download file. Are you logged?')