diff options
author | Simon Glass <sjg@chromium.org> | 2022-01-29 14:14:16 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2022-02-09 12:30:13 -0700 |
commit | 82e0e732ee2cf6d0e125aeb7ed7de69711f35ec8 (patch) | |
tree | b319ad1410444b531be5961cbbbaa972ec4a0704 /tools/buildman/control.py | |
parent | f3385a5b1c2024e33e276aef829a4da43ceee0fe (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/buildman/control.py')
-rw-r--r-- | tools/buildman/control.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/buildman/control.py b/tools/buildman/control.py index 2c25fd70668..0e4b2e0a9dc 100644 --- a/tools/buildman/control.py +++ b/tools/buildman/control.py @@ -18,7 +18,7 @@ from patman import gitutil 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 @@ def DoBuildman(options, args, toolchains=None, make_func=None, boards=None, 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 |