run_checks: Remove tab-space-checker

This commit is contained in:
Florian Bruhin 2014-08-06 21:17:06 +02:00
parent 4491e7db3e
commit 1cb7b447b7

View File

@ -208,9 +208,6 @@ def _check_file(fn):
for c in " \t"]):
print("Found whitespace at line ending in {}".format(fn))
ok = False
elif b' \t' in line or b'\t ' in line:
print("Found tab-space mix in {}".format(fn))
ok = False
elif b'set_trace()' in line and not (
fn.endswith('debug.py') or fn.endswith('run_checks.py')):
print("Found set_trace in {}".format(fn))