aboutsummaryrefslogtreecommitdiff
path: root/yt_dlp/YoutubeDL.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2022-05-27 21:28:53 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2022-05-27 21:29:30 +0530
commit0bf9dc1e355ed4c3fc0ad0fd2b9dfcd2150a2b02 (patch)
tree30ea5efcc47430ca74a04cd220367b65484417c5 /yt_dlp/YoutubeDL.py
parent829bbd1d05ae7e4519327f1cb6e75b3da38e0a0b (diff)
Fix bug in 8a82af3511b4379af0d239dbd01c672c17a2c46a
Diffstat (limited to 'yt_dlp/YoutubeDL.py')
-rw-r--r--yt_dlp/YoutubeDL.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py
index d3497d746..5aae25707 100644
--- a/yt_dlp/YoutubeDL.py
+++ b/yt_dlp/YoutubeDL.py
@@ -794,7 +794,7 @@ class YoutubeDL:
self.deprecation_warning('"YoutubeDL.to_stdout" no longer accepts the argument quiet. Use "YoutubeDL.to_screen" instead')
if skip_eol is not False:
self.deprecation_warning('"YoutubeDL.to_stdout" no longer accepts the argument skip_eol. Use "YoutubeDL.to_screen" instead')
- self._write_string(self._bidi_workaround(message), self._out_files.out)
+ self._write_string(f'{self._bidi_workaround(message)}\n', self._out_files.out)
def to_screen(self, message, skip_eol=False, quiet=None):
"""Print message to screen if not in quiet mode"""