summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2010-08-31 16:04:30 -0400
committerColin Walters <walters@verbum.org>2010-08-31 16:05:56 -0400
commit552c1f1525e37a30376790151c1ba437776682c5 (patch)
tree35b6781cb82bc35d3c93e2db785678b0788837a4 /misc
parentf8ddb18535cfcc60fc28095f0f6db2895d90edac (diff)
downloadgobject-introspection-552c1f1525e37a30376790151c1ba437776682c5.tar.gz
pep8: Update to 99 length lines
69 is just too short for a compiler with long error messages and nested code.
Diffstat (limited to 'misc')
-rw-r--r--misc/pep8.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/pep8.py b/misc/pep8.py
index fef8a546..1a50efc6 100644
--- a/misc/pep8.py
+++ b/misc/pep8.py
@@ -183,7 +183,7 @@ def maximum_line_length(physical_line):
length to 72 characters is recommended.
"""
length = len(physical_line.rstrip())
- if length > 79:
+ if length > 99:
return 79, "E501 line too long (%d characters)" % length