summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-07-21 09:11:23 +0600
committerSergey M․ <dstftw@gmail.com>2015-07-21 09:11:23 +0600
commit4eb59a6b1cd1c4ca5f7dd284f0c26a329bb8e973 (patch)
tree870e410ed0463930b820d08e293a135ad16a3f21
parent80b1ee0a4c9368e1879a4869ea6664612f280b2f (diff)
downloadyoutube-dl-4eb59a6b1cd1c4ca5f7dd284f0c26a329bb8e973.tar.gz
youtube-dl-4eb59a6b1cd1c4ca5f7dd284f0c26a329bb8e973.tar.xz
youtube-dl-4eb59a6b1cd1c4ca5f7dd284f0c26a329bb8e973.zip
[options] Fix a typo (#6307)
-rw-r--r--youtube_dl/options.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/options.py b/youtube_dl/options.py
index 85365d769..9016e3498 100644
--- a/youtube_dl/options.py
+++ b/youtube_dl/options.py
@@ -219,7 +219,7 @@ def parseOpts(overrideArguments=None):
     selection.add_option(
         '--playlist-items',
         dest='playlist_items', metavar='ITEM_SPEC', default=None,
-        help='Playlist video items to download. Specify indices of the videos in the playlist seperated by commas like: "--playlist-items 1,2,5,8" if you want to download videos indexed 1, 2, 5, 8 in the playlist. You can specify range: "--playlist-items 1-3,7,10-13", it will download the videos at index 1, 2, 3, 7, 10, 11, 12 and 13.')
+        help='Playlist video items to download. Specify indices of the videos in the playlist separated by commas like: "--playlist-items 1,2,5,8" if you want to download videos indexed 1, 2, 5, 8 in the playlist. You can specify range: "--playlist-items 1-3,7,10-13", it will download the videos at index 1, 2, 3, 7, 10, 11, 12 and 13.')
     selection.add_option(
         '--match-title',
         dest='matchtitle', metavar='REGEX',