diff options
author | Simon Glass <sjg@chromium.org> | 2022-01-29 14:14:11 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2022-02-09 12:26:12 -0700 |
commit | 0157b187f45c00ffb3e85c7f5c33808454243608 (patch) | |
tree | 5245564c559d091a818bd06688cd116a009abe94 /tools/patman/project.py | |
parent | 967af26b6aedc21ccb51273fbbbb898ad8c4305f (diff) |
patman: Convert camel case in gitutil.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/project.py')
-rw-r--r-- | tools/patman/project.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patman/project.py b/tools/patman/project.py index 2dfc303729..641e2d6852 100644 --- a/tools/patman/project.py +++ b/tools/patman/project.py @@ -16,7 +16,7 @@ def DetectProject(): The name of the project, like "linux" or "u-boot". Returns "unknown" if we can't detect the project. """ - top_level = gitutil.GetTopLevel() + top_level = gitutil.get_top_level() if os.path.exists(os.path.join(top_level, "include", "u-boot")): return "u-boot" |