summaryrefslogtreecommitdiff
path: root/utils/check_sources.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-03-02 08:50:10 +0100
committerGeorg Brandl <georg@python.org>2014-03-02 08:50:10 +0100
commit85ddf03f45f79a0bc7d20fcceba0057a72452fd1 (patch)
tree49f519acf9c000d0fa4deefc94f7ac45498f7ac0 /utils/check_sources.py
parentdb0f7ccc705b37617faf7c6139e96dc826dfdb22 (diff)
parentcae4910527c549e83b8b63e88c90324113846f70 (diff)
downloadsphinx-git-85ddf03f45f79a0bc7d20fcceba0057a72452fd1.tar.gz
merge with stable
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 3c6cdcc40..6b984ad6d 100755
--- a/utils/check_sources.py
+++ b/utils/check_sources.py
@@ -63,7 +63,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)