From 90f794c6c3ec685ad1ec3b92fba3fc0be6322c10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergey=20M=E2=80=A4?= Date: Tue, 1 Mar 2016 23:41:23 +0600 Subject: [PATCH] [options] Add --no-mark-watched (#5054) --- youtube_dl/options.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/youtube_dl/options.py b/youtube_dl/options.py index 048dee881..9dd7a8034 100644 --- a/youtube_dl/options.py +++ b/youtube_dl/options.py @@ -174,6 +174,10 @@ def parseOpts(overrideArguments=None): '--mark-watched', action='store_true', dest='mark_watched', default=False, help='Mark videos watched (YouTube only)') + general.add_option( + '--no-mark-watched', + action='store_false', dest='mark_watched', default=False, + help='Do not mark videos watched (YouTube only)') general.add_option( '--no-color', '--no-colors', action='store_true', dest='no_color',