diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2011-08-02 12:19:31 (GMT) |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2011-08-02 12:19:31 (GMT) |
commit | 88bf51baff31eab153bfb3980ff318c469fc48a6 (patch) | |
tree | 66ee814694cd5c78c595c7a25c2b2d9577b73764 /Tools/scripts | |
parent | d61535d50b66a68cc9aecebbf5faca26d7b60a28 (diff) | |
download | cpython-88bf51baff31eab153bfb3980ff318c469fc48a6.zip cpython-88bf51baff31eab153bfb3980ff318c469fc48a6.tar.gz cpython-88bf51baff31eab153bfb3980ff318c469fc48a6.tar.bz2 |
Corrected attribute docstring per pep-257 (reference #10639)
Diffstat (limited to 'Tools/scripts')
-rwxr-xr-x | Tools/scripts/reindent.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/reindent.py b/Tools/scripts/reindent.py index 89b5e23..4a916ea 100755 --- a/Tools/scripts/reindent.py +++ b/Tools/scripts/reindent.py @@ -52,8 +52,8 @@ verbose = False recurse = False dryrun = False makebackup = True -"A specified newline to be used in the output (set by --newline option)" spec_newline = None +"""A specified newline to be used in the output (set by --newline option)""" def usage(msg=None): |