diff options
author | Simon Glass <sjg@chromium.org> | 2022-01-29 14:14:10 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2022-02-09 12:26:12 -0700 |
commit | 967af26b6aedc21ccb51273fbbbb898ad8c4305f (patch) | |
tree | 65ad572ea96402b9e300ce26b6cf3ffc39486b6c /tools/patman/series.py | |
parent | c3aaa05e34179f70d292dc8d5973d7066d734f29 (diff) |
patman: Convert camel case in get_maintainer.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/series.py')
-rw-r--r-- | tools/patman/series.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patman/series.py b/tools/patman/series.py index 98b4c9c9e7..7f5e600134 100644 --- a/tools/patman/series.py +++ b/tools/patman/series.py @@ -269,7 +269,7 @@ class Series(dict): cc += add_maintainers elif add_maintainers: dir_list = [os.path.join(gitutil.GetTopLevel(), 'scripts')] - cc += get_maintainer.GetMaintainer(dir_list, commit.patch) + cc += get_maintainer.get_maintainer(dir_list, commit.patch) for x in set(cc) & set(settings.bounces): print(col.Color(col.YELLOW, 'Skipping "%s"' % x)) cc = list(set(cc) - set(settings.bounces)) |