aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaimeMF@users.noreply.github.com>2014-02-20 08:02:54 +0100
committerJaime Marquínez Ferrándiz <jaimeMF@users.noreply.github.com>2014-02-20 08:02:54 +0100
commitf43770d8c93349ad6da26269bdde4c06c8e8b49e (patch)
tree559e16c9016dbdef2b85e15de6c3f77e50da64d1 /youtube_dl
parentccb079ee679ffe09694e5e0be3034db358478348 (diff)
parent98c4b8fa1b7527884c5ebd6a3f51abdd6eea5abc (diff)
downloadyoutube-dl-f43770d8c93349ad6da26269bdde4c06c8e8b49e.tar.xz
Merge pull request #2413 from bentley/optypo
Fix minor typo: “to to” → “to”.
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py
index f843036c7..70608066c 100644
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -208,7 +208,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')