youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 90f794c6c3ec685ad1ec3b92fba3fc0be6322c10
parent 66ca2cfddd840e775f0b810c393a91c55a135c20
Author: Sergey M․ <dstftw@gmail.com>
Date:   Tue,  1 Mar 2016 23:41:23 +0600

[options] Add --no-mark-watched (#5054)

Diffstat:
Myoutube_dl/options.py | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/options.py b/youtube_dl/options.py @@ -175,6 +175,10 @@ def parseOpts(overrideArguments=None): 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', default=False,