about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-12-23 04:30:55 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2013-12-23 04:30:57 +0100
commit196938835a77b0987e7743290983ccb03a14ffc1 (patch)
tree9aa56c08c0c156493081b98de2fa10b556bd465f
parenta94e129a653824f54621f9d603f014e0d7591804 (diff)
downloadyoutube-dl-196938835a77b0987e7743290983ccb03a14ffc1.tar.gz
youtube-dl-196938835a77b0987e7743290983ccb03a14ffc1.tar.xz
youtube-dl-196938835a77b0987e7743290983ccb03a14ffc1.zip
Remove debugging code
Introduced by accident in 5d681e960db98ec2d9f3d4361bd66f581506a772
-rw-r--r--youtube_dl/YoutubeDL.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
index e19708e0d..766d6e5fe 100644
--- a/youtube_dl/YoutubeDL.py
+++ b/youtube_dl/YoutubeDL.py
@@ -192,7 +192,6 @@ class YoutubeDL(object):
                         ['bidiv'] + width_args, **sp_kwargs
                     )
                 except OSError:
-                    print('Falling back to fribidi')
                     self._output_process = subprocess.Popen(
                         ['fribidi', '-c', 'UTF-8'] + width_args, **sp_kwargs)
                 self._output_channel = os.fdopen(master, 'rb')
@@ -251,7 +250,6 @@ class YoutubeDL(object):
 
     def _bidi_workaround(self, message):
         if not hasattr(self, '_output_channel'):
-            print('WORKAROUND NOT ENABLED')
             return message
 
         assert hasattr(self, '_output_process')