summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-01-01 22:47:21 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-01-01 22:47:21 +0100
commit50a0f6df7e058c466d668d033a358b7e02a2f80f (patch)
tree213eb80c2ce779e1c7e540e05eb5b67ed82d5836
parent9f435c5f1ce9566cf69b582b98b941d980d61262 (diff)
downloadyoutube-dl-50a0f6df7e058c466d668d033a358b7e02a2f80f.tar.gz
youtube-dl-50a0f6df7e058c466d668d033a358b7e02a2f80f.tar.xz
youtube-dl-50a0f6df7e058c466d668d033a358b7e02a2f80f.zip
[/__init__] Add another cute search example
-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 e79320323..56f560d26 100644
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -112,7 +112,7 @@ def _real_main(argv=None):
             if desc is False:
                 continue
             if hasattr(ie, 'SEARCH_KEY'):
-                _SEARCHES = ('cute kittens', 'slithering pythons', 'falling cat', 'angry poodle', 'purple fish', 'running tortoise', 'sleeping bunny')
+                _SEARCHES = ('cute kittens', 'slithering pythons', 'falling cat', 'angry poodle', 'purple fish', 'running tortoise', 'sleeping bunny', 'burping cow')
                 _COUNTS = ('', '5', '10', 'all')
                 desc += ' (Example: "%s%s:%s" )' % (ie.SEARCH_KEY, random.choice(_COUNTS), random.choice(_SEARCHES))
             compat_print(desc)