aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/options.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2021-12-18 04:28:18 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2021-12-19 09:05:58 +0530
commit940a67a3e2a3347bd5d1ce8e5b03047d923e9e2e (patch)
tree04889787d6ee8b061fb06cdab4864c7318f9fd18 /yt_dlp/options.py
parente6ae51c123897927eb3c9899923d8ffd31c7f85d (diff)
downloadhypervideo-pre-940a67a3e2a3347bd5d1ce8e5b03047d923e9e2e.tar.lz
hypervideo-pre-940a67a3e2a3347bd5d1ce8e5b03047d923e9e2e.tar.xz
hypervideo-pre-940a67a3e2a3347bd5d1ce8e5b03047d923e9e2e.zip
[docs] Change all examples to use double quotes
to be platform-agnostic
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r--yt_dlp/options.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py
index 82088638b..6f4c7eb0e 100644
--- a/yt_dlp/options.py
+++ b/yt_dlp/options.py
@@ -991,8 +991,9 @@ def parseOpts(overrideArguments=None):
filesystem.add_option(
'-a', '--batch-file',
dest='batchfile', metavar='FILE',
- help="File containing URLs to download ('-' for stdin), one URL per line. "
- "Lines starting with '#', ';' or ']' are considered as comments and ignored")
+ help=(
+ 'File containing URLs to download ("-" for stdin), one URL per line. '
+ 'Lines starting with "#", ";" or "]" are considered as comments and ignored'))
filesystem.add_option(
'--no-batch-file',
dest='batchfile', action='store_const', const=None,