diff options
author | j4qfrost <j4qfrost@gmail.com> | 2020-10-01 23:59:53 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-02 09:59:53 +1000 |
commit | d96e7226dd8909351c230b6f9820f952dddb0ece (patch) | |
tree | 36c2972484b00427dc3e306ce7089dc78090b230 /tools/test_format.py | |
parent | 4c779b5e8ca427faf24c26443a8054004827d450 (diff) |
refactor: use parentheses in print statements in python (#7779)
Diffstat (limited to 'tools/test_format.py')
-rwxr-xr-x | tools/test_format.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/test_format.py b/tools/test_format.py index 127f8d01c..ef2a0ffb3 100755 --- a/tools/test_format.py +++ b/tools/test_format.py @@ -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) |