Test for carriage returns in tidy.py.

This commit is contained in:
Ms2ger 2014-07-11 13:19:01 +02:00
parent a283f7801b
commit f65da65426

View file

@ -40,6 +40,9 @@ def do_whitespace_check(name, contents):
if '\t' in line:
report_error_name_no(name, idx + 1, "tab on line")
if '\r' in line:
report_error_name_no(name, idx + 1, "CR on line")
exceptions = [
# Upstream