aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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')