aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/check_whitespace.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check_whitespace.py b/scripts/check_whitespace.py
index 1ab43674..da4cadab 100755
--- a/scripts/check_whitespace.py
+++ b/scripts/check_whitespace.py
@@ -48,7 +48,7 @@ def check_file(filename):
char_name,))
break
# Check for trailing space
- if line.endswith(' '):
+ if line.endswith(' ') or line.endswith('\t'):
report_error(filename, lineno, "Line has trailing spaces")
# Check for more than 80 characters
if is_source_code and len(line) > 80: