summaryrefslogtreecommitdiff
path: root/pep8.py
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2012-03-26 03:21:32 +0200
committerFlorent Xicluna <florent.xicluna@gmail.com>2012-03-26 03:21:32 +0200
commit3d867ed14dfeca0702e6fb5945790548dde21101 (patch)
treedb10d1c85ee1dbbc718bbe836fd1a44f68379e90 /pep8.py
parent855240f5e58584453bc53be3deeb3112cfe51d72 (diff)
downloadpep8-3d867ed14dfeca0702e6fb5945790548dde21101.tar.gz
Add changelog entry for issue #36 and adapt the help message.
Diffstat (limited to 'pep8.py')
-rwxr-xr-xpep8.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pep8.py b/pep8.py
index 1c09695..66fe848 100755
--- a/pep8.py
+++ b/pep8.py
@@ -1291,8 +1291,8 @@ def process_options(arglist=None):
help="run regression tests from dir")
parser.add_option('--max-line-length', type='int', metavar='n',
default=MAX_LINE_LENGTH,
- help="set to a higher value to relax pep8 "
- "line length restictions")
+ help="set maximum allowed line length (default: %d)" %
+ MAX_LINE_LENGTH)
parser.add_option('--doctest', action='store_true',
help="run doctest on myself")
options, args = parser.parse_args(arglist)