summaryrefslogtreecommitdiff
path: root/tools/patman/project.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-01-30 00:14:11 +0300
committerSimon Glass <sjg@chromium.org>2022-02-09 22:26:12 +0300
commit0157b187f45c00ffb3e85c7f5c33808454243608 (patch)
tree5245564c559d091a818bd06688cd116a009abe94 /tools/patman/project.py
parent967af26b6aedc21ccb51273fbbbb898ad8c4305f (diff)
downloadu-boot-0157b187f45c00ffb3e85c7f5c33808454243608.tar.xz
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.py2
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"