aboutsummaryrefslogtreecommitdiff
path: root/tools/patman/main.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-01-29 14:14:16 -0700
committerSimon Glass <sjg@chromium.org>2022-02-09 12:30:13 -0700
commit82e0e732ee2cf6d0e125aeb7ed7de69711f35ec8 (patch)
treeb319ad1410444b531be5961cbbbaa972ec4a0704 /tools/patman/main.py
parentf3385a5b1c2024e33e276aef829a4da43ceee0fe (diff)
patman: Rename Print() to Tprint()
Rename this function so that when we convert it to snake case it will not conflict with the built-in print() function. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/patman/main.py')
-rwxr-xr-xtools/patman/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patman/main.py b/tools/patman/main.py
index 7a6e910f4b..d32eae4bfc 100755
--- a/tools/patman/main.py
+++ b/tools/patman/main.py
@@ -177,7 +177,7 @@ elif args.cmd == 'status':
args.dest_branch, args.force,
args.show_comments, args.patchwork_url)
except Exception as e:
- terminal.Print('patman: %s: %s' % (type(e).__name__, e),
+ terminal.Tprint('patman: %s: %s' % (type(e).__name__, e),
colour=terminal.Color.RED)
if args.debug:
print()