Fix linting for zerver/lib/tornado_ioloop_logging.py with older pyflakes.

(imported from commit 998d95df05acdc610336bf6da48fafd8c129e52e)
This commit is contained in:
Tim Abbott 2014-01-14 11:39:18 -05:00
parent eaeb097026
commit a8825e1c5d
1 changed files with 2 additions and 0 deletions

View File

@ -145,6 +145,8 @@ def check_pyflakes():
'redefinition of unused' in ln or
("zerver/models.py" in ln and
" undefined name 'bugdown'" in ln) or
("zerver/lib/tornado_ioloop_logging.py" in ln and
"redefinition of function 'instrument_tornado_ioloop'" in ln) or
("zephyr_mirror_backend.py:" in ln and
"redefinition of unused 'simplejson' from line" in ln)):
sys.stdout.write(ln)