aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/YoutubeDL.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2022-03-24 07:00:22 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2022-03-24 07:30:25 +0530
commitae6a1b95857c7ba1392e37be99b9ee2b66b14b1d (patch)
tree63d6dddc4096b4a5710f334359cb33414a1e4e7a /yt_dlp/YoutubeDL.py
parent231025c4632d7a48540b18997c715a8df8a6ff8e (diff)
downloadhypervideo-pre-ae6a1b95857c7ba1392e37be99b9ee2b66b14b1d.tar.lz
hypervideo-pre-ae6a1b95857c7ba1392e37be99b9ee2b66b14b1d.tar.xz
hypervideo-pre-ae6a1b95857c7ba1392e37be99b9ee2b66b14b1d.zip
[docs] Minor improvements
Closes #3127, Closes #3081, Closes #3177
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 80c7944f3..740f9a7bd 100644
--- a/yt_dlp/YoutubeDL.py
+++ b/yt_dlp/YoutubeDL.py
@@ -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'])