summaryrefslogtreecommitdiff
path: root/utils/check_sources.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-01-10 21:23:39 +0100
committerGeorg Brandl <georg@python.org>2009-01-10 21:23:39 +0100
commitb068e9180365a5d74d4fb02b003d7a05f99ffac3 (patch)
treec092aa25daf519398c0d6cc84f85a568cf26440e /utils/check_sources.py
parentd0e0acaaa1278627d70f7bbb7d823c79d3546b58 (diff)
downloadsphinx-git-b068e9180365a5d74d4fb02b003d7a05f99ffac3.tar.gz
Reformat to EOL80.
Diffstat (limited to 'utils/check_sources.py')
-rwxr-xr-xutils/check_sources.py2
1 files changed, 1 insertions, 1 deletions
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)