X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2F__init__.py;h=84f29a1a5cb638b4dd92174893d28fce17d1f85e;hb=ce78943ae1be8cc24ec43f97dc67d34010ae08f7;hp=055fd70298e76e25f98e849502644c292aef2f97;hpb=0cea52cc183fbd5d9616b49ce49cb479ed9aad43;p=youtube-dl diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index 055fd7029..84f29a1a5 100644 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -44,6 +44,9 @@ __authors__ = ( 'Oleg Prutz', 'pulpe', 'Andreas Schmitz', + 'Michael Kaiser', + 'Niklas Laxström', + 'David Triendl', ) __license__ = 'Public Domain' @@ -206,7 +209,7 @@ def parseOpts(overrideArguments=None): general.add_option('-U', '--update', action='store_true', dest='update_self', help='update this program to latest version. Make sure that you have sufficient permissions (run with sudo if needed)') general.add_option('-i', '--ignore-errors', - action='store_true', dest='ignoreerrors', help='continue on download errors, for example to to skip unavailable videos in a playlist', default=False) + action='store_true', dest='ignoreerrors', help='continue on download errors, for example to skip unavailable videos in a playlist', default=False) general.add_option('--abort-on-error', action='store_false', dest='ignoreerrors', help='Abort downloading of further videos (in the playlist or the command line) if an error occurs')