##// END OF EJS Templates
bundlerepo: fix and improve getremotechanges...
bundlerepo: fix and improve getremotechanges Fixes the regression where incoming could show local changes introduced by rev 72c84f24b420.

File last commit:

r14140:82f0412e default
r14161:8a0fca92 default
Show More
filterpyflakes.py
12 lines | 252 B | text/x-python | PythonLexer
#!/usr/bin/env python
# Filter output by pyflakes to control which warnings we check
import sys, re
for line in sys.stdin:
# We whitelist tests
if not re.search("imported but unused", line):
continue
sys.stdout.write(line)
print