aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/options.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2021-09-04 01:18:56 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2021-09-04 01:39:30 +0530
commitdd594deb2a0449dd8b145ef0552235f66ee3d454 (patch)
tree7429e3d6cde560962a6b0b39c4a13bcc42d49ae7 /yt_dlp/options.py
parent409e18286e5dcd0cba60726f8143847dfed743cf (diff)
downloadhypervideo-pre-dd594deb2a0449dd8b145ef0552235f66ee3d454.tar.lz
hypervideo-pre-dd594deb2a0449dd8b145ef0552235f66ee3d454.tar.xz
hypervideo-pre-dd594deb2a0449dd8b145ef0552235f66ee3d454.zip
Fix `--no-get-comments`
Closes #882
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r--yt_dlp/options.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py
index 2086e1265..505160cec 100644
--- a/yt_dlp/options.py
+++ b/yt_dlp/options.py
@@ -1105,7 +1105,7 @@ def parseOpts(overrideArguments=None):
'The comments are fetched even without this option if the extraction is known to be quick (Alias: --get-comments)'))
filesystem.add_option(
'--no-write-comments', '--no-get-comments',
- action='store_true', dest='getcomments', default=False,
+ action='store_false', dest='getcomments',
help='Do not retrieve video comments unless the extraction is known to be quick (Alias: --no-get-comments)')
filesystem.add_option(
'--load-info-json', '--load-info',