mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
update_lints.py: port another print to print() for python3 compatibility.
This commit is contained in:
parent
82e9f5ffa3
commit
7ded77fe7d
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)
|
||||
|
||||
if not found:
|
||||
print "regex " + region_start + " not found"
|
||||
print("regex " + region_start + " not found")
|
||||
|
||||
# write back to file
|
||||
if write_back:
|
||||
|
|
Loading…
Reference in a new issue