Skip to content

Commit

Permalink
Fix --no-get-comments
Browse files Browse the repository at this point in the history
Closes yt-dlp#882
  • Loading branch information
pukkandan committed Sep 3, 2021
1 parent 409e182 commit dd594de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yt_dlp/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -1105,7 +1105,7 @@ def _dict_from_options_callback(
'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',
Expand Down

0 comments on commit dd594de

Please sign in to comment.