X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2F__init__.py;h=84f29a1a5cb638b4dd92174893d28fce17d1f85e;hb=5bb67dbfea5f64d7eaa2ae1584b8d4ec5aa6f5d6;hp=e81366851fec4e495e571e2bad1ed4ab06d3fcc6;hpb=03fcf1ab573501bdbde4976b7db6760a42032792;p=youtube-dl diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index e81366851..84f29a1a5 100644 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -41,7 +41,12 @@ __authors__ = ( 'Chris Gahan', 'Saimadhav Heblikar', 'Mike Col', + 'Oleg Prutz', + 'pulpe', 'Andreas Schmitz', + 'Michael Kaiser', + 'Niklas Laxström', + 'David Triendl', ) __license__ = 'Public Domain' @@ -204,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')