mirror of
https://github.com/denoland/deno.git
synced 2025-09-29 13:44:47 +00:00
refactor: use parentheses in print statements in python (#7779)
This commit is contained in:
parent
4c779b5e8c
commit
d96e7226dd
4 changed files with 8 additions and 8 deletions
|
@ -13,8 +13,8 @@ def main():
|
|||
["git", "status", "-uno", "--porcelain", "--ignore-submodules"],
|
||||
exit_on_fail=True)
|
||||
if result.out:
|
||||
print "Run tools/format.py "
|
||||
print result.out
|
||||
print("Run tools/format.py ")
|
||||
print(result.out)
|
||||
sys.exit(1)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue