Show all matching URLs
authorPhilipp Hagemeister <phihag@phihag.de>
Sun, 22 Dec 2013 02:25:55 +0000 (03:25 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Sun, 22 Dec 2013 02:25:55 +0000 (03:25 +0100)
youtube_dl/__init__.py

index 6df44020b762c78a0cc0a5a53548ea6248e6c9a8..7e156d4d42c4e3f015de5a18f1bb017ea5952ded 100644 (file)
@@ -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)