mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-25 13:14:19 +08:00
patman: Rename 'list' variable in MakeCcFile()
This is not a good variable name in Python because 'list' is a type. It shows up highlighted in some editors. Rename it. Signed-off-by: Simon Glass <sjg@chromium.org> Tested-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
This commit is contained in:
parent
1f487f85d2
commit
a44f4fb72b
@ -223,20 +223,20 @@ class Series(dict):
|
||||
fd = open(fname, 'w')
|
||||
all_ccs = []
|
||||
for commit in self.commits:
|
||||
list = []
|
||||
cc = []
|
||||
if process_tags:
|
||||
list += gitutil.BuildEmailList(commit.tags,
|
||||
cc += gitutil.BuildEmailList(commit.tags,
|
||||
raise_on_error=raise_on_error)
|
||||
list += gitutil.BuildEmailList(commit.cc_list,
|
||||
cc += gitutil.BuildEmailList(commit.cc_list,
|
||||
raise_on_error=raise_on_error)
|
||||
if type(add_maintainers) == type(list):
|
||||
list += add_maintainers
|
||||
if type(add_maintainers) == type(cc):
|
||||
cc += add_maintainers
|
||||
elif add_maintainers:
|
||||
list += get_maintainer.GetMaintainer(commit.patch)
|
||||
list = [m.encode('utf-8') if type(m) != str else m for m in list]
|
||||
all_ccs += list
|
||||
print(commit.patch, ', '.join(set(list)), file=fd)
|
||||
self._generated_cc[commit.patch] = list
|
||||
cc += get_maintainer.GetMaintainer(commit.patch)
|
||||
cc = [m.encode('utf-8') if type(m) != str else m for m in cc]
|
||||
all_ccs += cc
|
||||
print(commit.patch, ', '.join(set(cc)), file=fd)
|
||||
self._generated_cc[commit.patch] = cc
|
||||
|
||||
if cover_fname:
|
||||
cover_cc = gitutil.BuildEmailList(self.get('cover_cc', ''))
|
||||
|
Loading…
Reference in New Issue
Block a user