aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/__init__.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-07-22 04:53:06 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-07-22 04:53:14 +0200
commit53eb217661ee95fc14d3f801118b2d69070d0bbe (patch)
treee53b29f690f39a4e896fd2fa25da5a3fddbbd398 /youtube_dl/__init__.py
parent1e8ac8364b09259b5bfa277304f5fb31906b8801 (diff)
downloadyoutube-dl-53eb217661ee95fc14d3f801118b2d69070d0bbe.tar.xz
Add another great example for the --extractor-descriptions output
Diffstat (limited to 'youtube_dl/__init__.py')
-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 0e7b9ddaf..c6a5b2b5b 100644
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -633,7 +633,7 @@ def _real_main(argv=None):
if desc is False:
continue
if hasattr(ie, 'SEARCH_KEY'):
- _SEARCHES = (u'cute kittens', u'slithering pythons', u'falling cat', u'angry poodle', u'purple fish', u'running tortoise')
+ _SEARCHES = (u'cute kittens', u'slithering pythons', u'falling cat', u'angry poodle', u'purple fish', u'running tortoise', u'sleeping bunny')
_COUNTS = (u'', u'5', u'10', u'all')
desc += u' (Example: "%s%s:%s" )' % (ie.SEARCH_KEY, random.choice(_COUNTS), random.choice(_SEARCHES))
compat_print(desc)