summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-12-22 03:25:55 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2013-12-22 03:25:55 +0100
commit04ff34ab8977ae14654089f5bf9956ffa8f23c5f (patch)
treeca82de744fe8254fa4c007b8d017797533fc20fd
parentbbafbe20c233d00e86fc87a1b1ccab8cf9e88232 (diff)
downloadyoutube-dl-04ff34ab8977ae14654089f5bf9956ffa8f23c5f.tar.gz
youtube-dl-04ff34ab8977ae14654089f5bf9956ffa8f23c5f.tar.xz
youtube-dl-04ff34ab8977ae14654089f5bf9956ffa8f23c5f.zip
Show all matching URLs
-rw-r--r--youtube_dl/__init__.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py
index 6df44020b..7e156d4d4 100644
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -525,7 +525,6 @@ def _real_main(argv=None):
         for ie in sorted(extractors, key=lambda ie: ie.IE_NAME.lower()):
             compat_print(ie.IE_NAME + (' (CURRENTLY BROKEN)' if not ie._WORKING else ''))
             matchedUrls = [url for url in all_urls if ie.suitable(url)]
-            all_urls = [url for url in all_urls if url not in matchedUrls]
             for mu in matchedUrls:
                 compat_print(u'  ' + mu)
         sys.exit(0)