Kaydet (Commit) 17b9e27a authored tarafından Georg Brandl's avatar Georg Brandl

Run 2to3 over new script.

üst 369bc0f9
......@@ -3,7 +3,7 @@
# Make a reST file compliant to our pre-commit hook.
# Currently just remove trailing whitespace.
from __future__ import with_statement
import sys, re, shutil
ws_re = re.compile(r'\s+(\r?\n)$')
......@@ -16,12 +16,12 @@ def main(argv=sys.argv):
lines = f.readlines()
new_lines = [ws_re.sub(r'\1', line) for line in lines]
if new_lines != lines:
print 'Fixing %s...' % filename
print('Fixing %s...' % filename)
shutil.copyfile(filename, filename + '.bak')
with open(filename, 'wb') as f:
f.writelines(new_lines)
except Exception, err:
print 'Cannot fix %s: %s' % (filename, err)
except Exception as err:
print('Cannot fix %s: %s' % (filename, err))
rv = 1
return rv
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment