summaryrefslogtreecommitdiff
path: root/utils/check_sources.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-03-02 08:40:48 +0100
committerGeorg Brandl <georg@python.org>2014-03-02 08:40:48 +0100
commit501c2d13e66842a57d1ca4a8ccb3dc2b8bba79d1 (patch)
treec273ce1c7d74ff3be8ab39b5bd312efad48be5fc /utils/check_sources.py
parentc68104b1be74b8b102a2f3bf394e03072c760cfa (diff)
downloadsphinx-git-501c2d13e66842a57d1ca4a8ccb3dc2b8bba79d1.tar.gz
Fix long lines.
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 52f23e1f4..7bbd0a79b 100755
--- a/utils/check_sources.py
+++ b/utils/check_sources.py
@@ -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)