diff options
| author | Georg Brandl <georg@python.org> | 2014-03-02 08:40:48 +0100 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2014-03-02 08:40:48 +0100 |
| commit | ed8409c87ac0f22b55499a2ed1b41f94f3bbc2fe (patch) | |
| tree | c273ce1c7d74ff3be8ab39b5bd312efad48be5fc /utils | |
| parent | 2d9105da52e65a255882870ba7c74a29c7b97e37 (diff) | |
| download | sphinx-ed8409c87ac0f22b55499a2ed1b41f94f3bbc2fe.tar.gz | |
Fix long lines.
Diffstat (limited to 'utils')
| -rwxr-xr-x | utils/check_sources.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/check_sources.py b/utils/check_sources.py index 52f23e1f..7bbd0a79 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) |
