From 940a67a3e2a3347bd5d1ce8e5b03047d923e9e2e Mon Sep 17 00:00:00 2001 From: pukkandan Date: Sat, 18 Dec 2021 04:28:18 +0530 Subject: [docs] Change all examples to use double quotes to be platform-agnostic --- yt_dlp/options.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'yt_dlp/options.py') 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, -- cgit v1.2.3