summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-11-09 19:21:30 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-11-09 19:21:30 +0100
commit2a9e9b210b27778a71d920d4c7a0508c0cd446f9 (patch)
tree8a1e4bdccbd8470923d5ce57b242694ad24cfc85
parent897d6cc43a25f68c941cda80afaa47acaf7779bf (diff)
downloadyoutube-dl-2a9e9b210b27778a71d920d4c7a0508c0cd446f9.tar.gz
youtube-dl-2a9e9b210b27778a71d920d4c7a0508c0cd446f9.tar.xz
youtube-dl-2a9e9b210b27778a71d920d4c7a0508c0cd446f9.zip
Fix the documentation of '--autonumber-size' (#1743)
it's '--auto-number' not '--autonumber'
-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 48ffcbf8e..ab7879c5d 100644
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -349,7 +349,7 @@ def parseOpts(overrideArguments=None):
                   'for example with -o \'/my/downloads/%(uploader)s/%(title)s-%(id)s.%(ext)s\' .'))
     filesystem.add_option('--autonumber-size',
             dest='autonumber_size', metavar='NUMBER',
-            help='Specifies the number of digits in %(autonumber)s when it is present in output filename template or --autonumber option is given')
+            help='Specifies the number of digits in %(autonumber)s when it is present in output filename template or --auto-number option is given')
     filesystem.add_option('--restrict-filenames',
             action='store_true', dest='restrictfilenames',
             help='Restrict filenames to only ASCII characters, and avoid "&" and spaces in filenames', default=False)