summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-03-26 01:11:54 +0100
committerVictor Stinner <victor.stinner@gmail.com>2013-03-26 01:11:54 +0100
commit7b56365eeffe8f3f0743018f545f6901e07e7f0c (patch)
tree7d4ae01b1f0131e743516badc6e777b7437305fe /Tools
parentb66f6b5c73f6eda0d24bea66059da1fa7f651aa4 (diff)
downloadcpython-7b56365eeffe8f3f0743018f545f6901e07e7f0c.tar.gz
Issue #17516: use comment syntax for comments, instead of multiline string
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/scripts/reindent.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/reindent.py b/Tools/scripts/reindent.py
index 4a916ea149..18424dea14 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):