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>
diff --git a/tools/buildman/control.py b/tools/buildman/control.py
index 2c25fd7..0e4b2e0 100644
--- a/tools/buildman/control.py
+++ b/tools/buildman/control.py
@@ -18,7 +18,7 @@
from patman import patchstream
from patman import terminal
from patman import tools
-from patman.terminal import Print
+from patman.terminal import Tprint
def GetPlural(count):
"""Returns a plural 's' if count is not 1"""
@@ -362,7 +362,7 @@
else:
commits = None
- Print(GetActionSummary(options.summary, commits, board_selected,
+ Tprint(GetActionSummary(options.summary, commits, board_selected,
options))
# We can't show function sizes without board details at present