mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 13:13:34 +00:00
Merge pull request #3042 from matthiaskrgr/py3
update_lints.py: port another print to print() for python3 compatibility.
This commit is contained in:
commit
b6f08780de
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ def replace_region(fn, region_start, region_end, callback,
|
||||||
new_lines.append(line)
|
new_lines.append(line)
|
||||||
|
|
||||||
if not found:
|
if not found:
|
||||||
print "regex " + region_start + " not found"
|
print("regex " + region_start + " not found")
|
||||||
|
|
||||||
# write back to file
|
# write back to file
|
||||||
if write_back:
|
if write_back:
|
||||||
|
|
Loading…
Reference in a new issue