From b068e9180365a5d74d4fb02b003d7a05f99ffac3 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 10 Jan 2009 21:23:39 +0100 Subject: Reformat to EOL80. --- utils/check_sources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils/check_sources.py') diff --git a/utils/check_sources.py b/utils/check_sources.py index c244d9c0e..def13ee92 100755 --- a/utils/check_sources.py +++ b/utils/check_sources.py @@ -56,7 +56,7 @@ def check_syntax(fn, lines): def check_style_and_encoding(fn, lines): encoding = 'ascii' for lno, line in enumerate(lines): - if len(line) > 90: + if len(line) > 81: yield lno+1, "line too long" if lno < 2: co = coding_re.search(line) -- cgit v1.2.1