Hide 'redefinition of unused' pyflakes errors

(imported from commit d5c0129c40121f8bca8f2ebedde8fcbf03d718f2)
This commit is contained in:
Luke Faraone 2013-11-12 18:34:28 -08:00
parent 79ef54d6fa
commit 6c57a9ec26
1 changed files with 1 additions and 0 deletions

View File

@ -121,6 +121,7 @@ def check_pyflakes():
for ln in pipe:
if options.full or not \
('imported but unused' in ln or
'redefinition of unused' in ln or
("zephyr_mirror_backend.py:" in ln and
"redefinition of unused 'simplejson' from line" in ln)):
sys.stdout.write(ln)