summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-07-01 18:59:29 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-07-01 18:59:29 +0200
commit62067cb9b8041362f437a6e0d99f890838cdc00d (patch)
tree25db8faea383ef44381a620f6ef365180b872bdd
parent0f818663291752b2084d81aff76d945a43c66a06 (diff)
downloadyoutube-dl-62067cb9b8041362f437a6e0d99f890838cdc00d.tar.gz
youtube-dl-62067cb9b8041362f437a6e0d99f890838cdc00d.tar.xz
youtube-dl-62067cb9b8041362f437a6e0d99f890838cdc00d.zip
Shorten --list-extractor-descriptions to --extractor-descriptions
-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 4f1829214..7abe52255 100644
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -143,7 +143,7 @@ def parseOpts(overrideArguments=None):
     general.add_option('--list-extractors',
             action='store_true', dest='list_extractors',
             help='List all supported extractors and the URLs they would handle', default=False)
-    general.add_option('--list-extractor-descriptions',
+    general.add_option('--extractor-descriptions',
             action='store_true', dest='list_extractor_descriptions',
             help='Output descriptions of all supported extractors', default=False)
     general.add_option('--proxy', dest='proxy', default=None, help='Use the specified HTTP/HTTPS proxy', metavar='URL')