[1.8.x] Fixed E265 comment style

Backport of db77915c9f from master
This commit is contained in:
Collin Anderson 2015-02-05 13:25:34 -05:00 committed by Tim Graham
parent 232a1d297c
commit fc8e1e0c10
54 changed files with 197 additions and 210 deletions

View file

@ -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: