Skip to content

Commit b6f0878

Browse files
authored
Merge pull request #3042 from matthiaskrgr/py3
update_lints.py: port another print to print() for python3 compatibility.
2 parents 82e9f5f + 7ded77f commit b6f0878

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

util/update_lints.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def replace_region(fn, region_start, region_end, callback,
107107
new_lines.append(line)
108108

109109
if not found:
110-
print "regex " + region_start + " not found"
110+
print("regex " + region_start + " not found")
111111

112112
# write back to file
113113
if write_back:

0 commit comments

Comments
 (0)