Fix long lines.

This commit is contained in:
Georg Brandl
2014-03-02 08:40:48 +01:00
parent c68104b1be
commit 501c2d13e6
6 changed files with 22 additions and 13 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ if sys.version_info < (3, 0):
def check_style_and_encoding(fn, lines):
encoding = 'ascii'
for lno, line in enumerate(lines):
if len(line) > 81:
if len(line) > 90:
yield lno+1, "line too long"
if lno < 2:
co = coding_re.search(line)