patman: Replace tabs with spaces
In preparation for running on python 3.x, which will refuse to run scripts which mix tabs & spaces for indentation, replace 2 tab characters present in series.py with spaces. Signed-off-by: Paul Burton <paul.burton@imgtec.com> Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
3cb44ba80c
commit
12e5476df3
|
|
@ -225,7 +225,7 @@ class Series(dict):
|
||||||
raise_on_error=raise_on_error)
|
raise_on_error=raise_on_error)
|
||||||
list += gitutil.BuildEmailList(commit.cc_list,
|
list += gitutil.BuildEmailList(commit.cc_list,
|
||||||
raise_on_error=raise_on_error)
|
raise_on_error=raise_on_error)
|
||||||
if add_maintainers:
|
if add_maintainers:
|
||||||
list += get_maintainer.GetMaintainer(commit.patch)
|
list += get_maintainer.GetMaintainer(commit.patch)
|
||||||
all_ccs += list
|
all_ccs += list
|
||||||
print >>fd, commit.patch, ', '.join(set(list))
|
print >>fd, commit.patch, ', '.join(set(list))
|
||||||
|
|
@ -259,7 +259,7 @@ class Series(dict):
|
||||||
"""
|
"""
|
||||||
git_prefix = gitutil.GetDefaultSubjectPrefix()
|
git_prefix = gitutil.GetDefaultSubjectPrefix()
|
||||||
if git_prefix:
|
if git_prefix:
|
||||||
git_prefix = '%s][' % git_prefix
|
git_prefix = '%s][' % git_prefix
|
||||||
else:
|
else:
|
||||||
git_prefix = ''
|
git_prefix = ''
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue