summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2017-05-29 21:31:30 (GMT)
committerSimon Glass <sjg@chromium.org>2017-06-09 02:21:59 (GMT)
commita44f4fb72bcb954bf38385e2953f7320b9f25aa3 (patch)
tree448d89283a0ac4b983d87fe085b8d55210c49299 /tools
parent1f487f85d2d2a78a8d4e533253ed5c853540aea1 (diff)
downloadu-boot-fsl-qoriq-a44f4fb72bcb954bf38385e2953f7320b9f25aa3.tar.xz
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>
Diffstat (limited to 'tools')
-rw-r--r--tools/patman/series.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/tools/patman/series.py b/tools/patman/series.py
index 395b9ea..d3947a7 100644
--- a/tools/patman/series.py
+++ b/tools/patman/series.py
@@ -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', ''))