1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-10-04 12:15:02 -04:00
This commit is contained in:
pukkandan
2022-05-27 21:28:53 +05:30
parent 829bbd1d05
commit 0bf9dc1e35
2 changed files with 2 additions and 2 deletions

View File

@@ -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"""