From: Paul Burton Date: Tue, 27 Sep 2016 15:03:49 +0000 (+0100) Subject: patman: Replace tabs with spaces X-Git-Tag: v2016.11-rc2~10^2~29 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=12e5476df33a24ff781e6f78404792e4b8596c28;p=u-boot 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 Acked-by: Simon Glass --- diff --git a/tools/patman/series.py b/tools/patman/series.py index cc6f80b2fd..1ce30c673f 100644 --- a/tools/patman/series.py +++ b/tools/patman/series.py @@ -225,7 +225,7 @@ class Series(dict): raise_on_error=raise_on_error) list += gitutil.BuildEmailList(commit.cc_list, raise_on_error=raise_on_error) - if add_maintainers: + if add_maintainers: list += get_maintainer.GetMaintainer(commit.patch) all_ccs += list print >>fd, commit.patch, ', '.join(set(list)) @@ -259,7 +259,7 @@ class Series(dict): """ git_prefix = gitutil.GetDefaultSubjectPrefix() if git_prefix: - git_prefix = '%s][' % git_prefix + git_prefix = '%s][' % git_prefix else: git_prefix = ''