diff options
author | Simon Glass <sjg@chromium.org> | 2023-07-19 17:48:30 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2023-07-24 09:34:10 -0600 |
commit | 9ef05b950e47f4ca44bda7f0161180068ede0334 (patch) | |
tree | 2ca9c7caebf2fc41b140b61b7ff2d3732eb5f144 /tools/buildman/main.py | |
parent | 2ce6f9f44c07fddc7e0c25e1793d9be91e09aa9b (diff) |
buildman: Convert camel case in control.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/buildman/main.py')
-rwxr-xr-x | tools/buildman/main.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/buildman/main.py b/tools/buildman/main.py index 9b55125f74..d9ad836215 100755 --- a/tools/buildman/main.py +++ b/tools/buildman/main.py @@ -67,9 +67,8 @@ def run_buildman(): # Build selected commits for selected boards else: bsettings.Setup(options.config_file) - ret_code = control.DoBuildman(options, args) + ret_code = control.do_buildman(options, args) return ret_code - return 0 if __name__ == "__main__": |