Fix minor typo: “to to” → “to”.
authorAnthony J. Bentley <anthony@cathet.us>
Thu, 20 Feb 2014 03:02:29 +0000 (20:02 -0700)
committerAnthony J. Bentley <anthony@cathet.us>
Thu, 20 Feb 2014 03:02:29 +0000 (20:02 -0700)
README.md
youtube_dl/__init__.py

index 897603e3e682a5ba47e115ad3a7776eec0e63bae..49b62f13f84f32537d7a7d0323c5282866b02994 100644 (file)
--- 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
index f843036c71e75cde73285351b10d7f06c3f7e542..70608066c83b836a14825622d0eef6b0042e5395 100644 (file)
@@ -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')