summaryrefslogtreecommitdiffstats
path: root/tools/patman/patchstream.py
diff options
context:
space:
mode:
authorAlbert ARIBAUD <albert.u.boot@aribaud.net>2012-10-15 09:55:50 +0000
committerTom Rini <trini@ti.com>2012-10-19 15:25:46 -0700
commit7f14f30a6d6c80f9fbe3fd8d5b0c294575e3094e (patch)
tree30072ee2c438c00c1f163a69233a6eeff4ea9537 /tools/patman/patchstream.py
parenteeaec258b751075d48e081d645516dab3240ab96 (diff)
downloadtalos-obmc-uboot-7f14f30a6d6c80f9fbe3fd8d5b0c294575e3094e.tar.gz
talos-obmc-uboot-7f14f30a6d6c80f9fbe3fd8d5b0c294575e3094e.zip
patman: force git log commands to not use color
Colored logs confuse patman when analyzing logs. Add --no-color option in git log commands in case the default config has color. Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net> Acked-by: Simon Glass <sjg@chromium.org> Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'tools/patman/patchstream.py')
-rw-r--r--tools/patman/patchstream.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/patman/patchstream.py b/tools/patman/patchstream.py
index 0503bac42e..ad280cc46c 100644
--- a/tools/patman/patchstream.py
+++ b/tools/patman/patchstream.py
@@ -344,7 +344,8 @@ def GetMetaData(start, count):
start: Commit to start from: 0=HEAD, 1=next one, etc.
count: Number of commits to list
"""
- pipe = [['git', 'log', '--reverse', 'HEAD~%d' % start, '-n%d' % count]]
+ pipe = [['git', 'log', '--no-color', '--reverse', 'HEAD~%d' % start,
+ '-n%d' % count]]
stdout = command.RunPipe(pipe, capture=True)
series = Series()
ps = PatchStream(series, is_log=True)
OpenPOWER on IntegriCloud