aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/common.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2021-10-31 14:45:59 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2021-10-31 14:47:33 +0530
commit0930b11fdaff2141ad951a8ed6d90417bfde7059 (patch)
tree67e28cd153d90d0cbac465545f35a390d5ed2d8a /yt_dlp/extractor/common.py
parenta0bb6ce58db5b3124962037ca12e78cbd348f56c (diff)
downloadhypervideo-pre-0930b11fdaff2141ad951a8ed6d90417bfde7059.tar.lz
hypervideo-pre-0930b11fdaff2141ad951a8ed6d90417bfde7059.tar.xz
hypervideo-pre-0930b11fdaff2141ad951a8ed6d90417bfde7059.zip
[docs,cleanup] Improve docs and minor cleanup
Closes #1387, #1404, #1408, #1485, #1415, #1450, #1492
Diffstat (limited to 'yt_dlp/extractor/common.py')
-rw-r--r--yt_dlp/extractor/common.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/extractor/common.py b/yt_dlp/extractor/common.py
index aa98c0cc9..2bbe23699 100644
--- a/yt_dlp/extractor/common.py
+++ b/yt_dlp/extractor/common.py
@@ -441,11 +441,11 @@ class InfoExtractor(object):
_WORKING = True
_LOGIN_HINTS = {
- 'any': 'Use --cookies, --username and --password or --netrc to provide account credentials',
+ 'any': 'Use --cookies, --username and --password, or --netrc to provide account credentials',
'cookies': (
'Use --cookies-from-browser or --cookies for the authentication. '
'See https://github.com/ytdl-org/youtube-dl#how-do-i-pass-cookies-to-youtube-dl for how to manually pass cookies'),
- 'password': 'Use --username and --password or --netrc to provide account credentials',
+ 'password': 'Use --username and --password, or --netrc to provide account credentials',
}
def __init__(self, downloader=None):