[docs] Minor improvements

Closes #3127, Closes #3081, Closes #3177
This commit is contained in:
pukkandan 2022-03-24 07:00:22 +05:30
parent 231025c463
commit ae6a1b9585
No known key found for this signature in database
GPG key ID: 7EEE9E1E817D0A39
5 changed files with 22 additions and 21 deletions

View file

@ -788,7 +788,7 @@ class YoutubeDL(object):
def to_stdout(self, message, skip_eol=False, quiet=None):
"""Print message to stdout"""
if quiet is not None:
self.deprecation_warning('"ydl.to_stdout" no longer accepts the argument quiet. Use "ydl.to_screen" instead')
self.deprecation_warning('"YoutubeDL.to_stdout" no longer accepts the argument quiet. Use "YoutubeDL.to_screen" instead')
self._write_string(
'%s%s' % (self._bidi_workaround(message), ('' if skip_eol else '\n')),
self._out_files['print'])