refactor: use parentheses in print statements in python (#7779)

This commit is contained in:
j4qfrost 2020-10-01 23:59:53 +00:00 committed by GitHub
parent 4c779b5e8c
commit d96e7226dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 8 deletions

View file

@ -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)