aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony J. Bentley <anthony@cathet.us>2014-02-19 20:02:29 -0700
committerAnthony J. Bentley <anthony@cathet.us>2014-02-19 20:02:29 -0700
commit98c4b8fa1b7527884c5ebd6a3f51abdd6eea5abc (patch)
tree4a14c12bb698e1018080df7454fc21079f2d1464
parent2ea237472c9021959e5485be1bc5cbd6a538c7cd (diff)
downloadyoutube-dl-98c4b8fa1b7527884c5ebd6a3f51abdd6eea5abc.tar.xz
Fix minor typo: “to to” → “to”.
-rw-r--r--README.md2
-rw-r--r--youtube_dl/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 897603e3e..49b62f13f 100644
--- a/README.md
+++ b/README.md
@@ -20,7 +20,7 @@ which means you can modify it, redistribute it or use it however you like.
sure that you have sufficient permissions
(run with sudo if needed)
-i, --ignore-errors continue on download errors, for example to
- to skip unavailable videos in a playlist
+ skip unavailable videos in a playlist
--abort-on-error Abort downloading of further videos (in the
playlist or the command line) if an error
occurs
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')