some py3 fixes, both needed and recommended; we should pass 2to3 as cleanly as possible now

This commit is contained in:
Filippo Valsorda 2012-12-20 14:18:23 +01:00
parent 0eaf520d77
commit 1a2c3c0f3e
3 changed files with 9 additions and 12 deletions

View file

@ -453,8 +453,8 @@ def _real_main():
if opts.list_extractors:
for ie in extractors:
print(ie.IE_NAME + (' (CURRENTLY BROKEN)' if not ie._WORKING else ''))
matchedUrls = filter(lambda url: ie.suitable(url), all_urls)
all_urls = filter(lambda url: url not in matchedUrls, all_urls)
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:
print(u' ' + mu)
sys.exit(0)