diff options
Diffstat (limited to 'misc/pep8.py')
-rw-r--r-- | misc/pep8.py | 2 |
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 |