From b83889a20eb01094a3361cf08f27895fea164049 Mon Sep 17 00:00:00 2001 From: dirkf Date: Tue, 15 Nov 2022 19:08:40 +0000 Subject: [PATCH] Update mark_watched doc --- README.md | 5 +++-- youtube_dl/options.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d6d9729ac..cd888c731 100644 --- a/README.md +++ b/README.md @@ -92,8 +92,9 @@ Alternatively, refer to the [developer instructions](#developer-instructions) fo containing directory. --flat-playlist Do not extract the videos of a playlist, only list them. - --mark-watched Mark videos watched - --no-mark-watched Do not mark videos watched + --mark-watched Mark videos watched (YouTube only) + --no-mark-watched Do not mark videos watched (YouTube + only) --no-color Do not emit color codes in output ## Network Options: diff --git a/youtube_dl/options.py b/youtube_dl/options.py index 3a9ca70d5..50de4bdcb 100644 --- a/youtube_dl/options.py +++ b/youtube_dl/options.py @@ -188,7 +188,7 @@ def parseOpts(overrideArguments=None): general.add_option( '--mark-watched', action='store_true', dest='mark_watched', default=False, - help='Mark videos watched') + help='Mark videos watched (if supported for site)') general.add_option( '--no-mark-watched', action='store_false', dest='mark_watched', default=False,