summaryrefslogtreecommitdiff
path: root/docs/_ext
diff options
context:
space:
mode:
authorCollin Anderson <cmawebsite@gmail.com>2015-02-05 13:25:34 -0500
committerTim Graham <timograham@gmail.com>2015-02-06 09:35:08 -0500
commitfc8e1e0c107fe5fc8c82f01dfabfa9b7a196a67c (patch)
tree2479a9a9fdc399e9ec6d640d9eaca191e66e6c6c /docs/_ext
parent232a1d297c8431a77f3dbb9bcf453d17eb5e3315 (diff)
[1.8.x] Fixed E265 comment style
Backport of db77915c9fd35a203edd8206f702ee4082f04d4a from master
Diffstat (limited to 'docs/_ext')
-rw-r--r--docs/_ext/applyxrefs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/_ext/applyxrefs.py b/docs/_ext/applyxrefs.py
index 513c17d84e..d4cd79137e 100644
--- a/docs/_ext/applyxrefs.py
+++ b/docs/_ext/applyxrefs.py
@@ -34,7 +34,7 @@ def has_target(fn):
print("Can't open or read %s. Not touching it." % fn)
return (True, None)
- #print fn, len(lines)
+ # print fn, len(lines)
if len(lines) < 1:
print("Not touching empty file %s." % fn)
return (True, None)
@@ -56,7 +56,7 @@ def main(argv=None):
files.extend((dirpath, f) for f in filenames)
files.sort()
files = [os.path.join(p, fn) for p, fn in files if fn.endswith('.txt')]
- #print files
+ # print files
for fn in files:
if fn in DONT_TOUCH: