patman: Convert camel case in get_maintainer.py
authorSimon Glass <sjg@chromium.org>
Sat, 29 Jan 2022 21:14:10 +0000 (14:14 -0700)
committerSimon Glass <sjg@chromium.org>
Wed, 9 Feb 2022 19:26:12 +0000 (12:26 -0700)
Convert this file to snake case and update all files which use it.

Signed-off-by: Simon Glass <sjg@chromium.org>
tools/patman/get_maintainer.py
tools/patman/series.py

index 98ab82f..e1d15ff 100644 (file)
@@ -6,7 +6,7 @@ import os
 
 from patman import command
 
-def FindGetMaintainer(try_list):
+def find_get_maintainer(try_list):
     """Look for the get_maintainer.pl script.
 
     Args:
@@ -23,7 +23,7 @@ def FindGetMaintainer(try_list):
 
     return None
 
-def GetMaintainer(dir_list, fname, verbose=False):
+def get_maintainer(dir_list, fname, verbose=False):
     """Run get_maintainer.pl on a file if we find it.
 
     We look for get_maintainer.pl in the 'scripts' directory at the top of
@@ -37,7 +37,7 @@ def GetMaintainer(dir_list, fname, verbose=False):
     Returns:
         A list of email addresses to CC to.
     """
-    get_maintainer = FindGetMaintainer(dir_list)
+    get_maintainer = find_get_maintainer(dir_list)
     if not get_maintainer:
         if verbose:
             print("WARNING: Couldn't find get_maintainer.pl")
index 98b4c9c..7f5e600 100644 (file)
@@ -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))