diff options
author | Simon Glass <sjg@chromium.org> | 2022-01-29 14:14:18 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2022-02-09 12:30:13 -0700 |
commit | 098b10fb34140f4ac37cfab9c9afade9135710a8 (patch) | |
tree | b52a4f7b55e5969750e1bc1eeaeccd827ef4842d /tools/patman/main.py | |
parent | 252ac589969acbc4c17379a4e862a18e1518d12d (diff) |
patman: Convert camel case in terminal.py
Convert this file to snake case and update all files which use it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/patman/main.py')
-rwxr-xr-x | tools/patman/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patman/main.py b/tools/patman/main.py index d32eae4bfc..2a2ac45709 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.Tprint('patman: %s: %s' % (type(e).__name__, e), + terminal.tprint('patman: %s: %s' % (type(e).__name__, e), colour=terminal.Color.RED) if args.debug: print() |