diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-10-07 12:21:24 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-10-07 12:21:24 +0200 |
commit | 15870e90b0aa7fe73040936a2ef4e41cf5eed931 (patch) | |
tree | 94d7fe7b16acb21fc8cf53a231110287aecba2b3 /youtube_dl/__init__.py | |
parent | 387ae5f30b5490bf2ffcdcb1c9e07f0845934ceb (diff) |
Restore warning when user forgets to quote URL (#1396)
Diffstat (limited to 'youtube_dl/__init__.py')
-rw-r--r-- | youtube_dl/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index ba5206387..db4c58885 100644 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -484,6 +484,8 @@ def _real_main(argv=None): if not ie._WORKING: continue desc = getattr(ie, 'IE_DESC', ie.IE_NAME) + 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') _COUNTS = (u'', u'5', u'10', u'all') |