3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-06 06:03:23 +00:00

Python 3.x issues

This commit is contained in:
Christoph M. Wintersteiger 2015-10-28 22:40:07 +00:00
parent ced04bc15c
commit eb28ee8999
3 changed files with 15 additions and 15 deletions

View file

@ -50,7 +50,7 @@ def add_missing_cr(dir):
if f.endswith('.cpp') or f.endswith('.h') or f.endswith('.c') or f.endswith('.cs'):
path = "%s\\%s" % (root, f)
if not has_cr(path):
print "Missing CR for %s" % path
print("Missing CR for %s" % path)
add_cr(path)
add_missing_cr('src')