diff options
author | Simon Glass | 2022-01-29 14:14:07 -0700 |
---|---|---|
committer | Simon Glass | 2022-02-09 12:26:12 -0700 |
commit | a3eeadfeb9f3aaa03c716d7aedbd98bb49c88172 (patch) | |
tree | d1bdfa43857015814deadc4a5a8c6d27777ef02a /tools/patman/series.py | |
parent | ae5e9265509bcb4bed7a0a1c3da613419919681d (diff) |
patman: Convert camel case in commit.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 da734d92cf3..98b4c9c9e7f 100644 --- a/tools/patman/series.py +++ b/tools/patman/series.py @@ -94,7 +94,7 @@ class Series(dict): Args: commit: Commit object to add """ - commit.CheckTags() + commit.check_tags() self.commits.append(commit) def ShowActions(self, args, cmd, process_tags): |