summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/buildman/control.py2
-rw-r--r--tools/patman/patchstream.py3
2 files changed, 2 insertions, 3 deletions
diff --git a/tools/buildman/control.py b/tools/buildman/control.py
index 6a4de36681..fb79a1ecfe 100644
--- a/tools/buildman/control.py
+++ b/tools/buildman/control.py
@@ -70,7 +70,7 @@ def ShowActions(series, why_selected, boards_selected, builder, options):
if commits:
for upto in range(0, len(series.commits), options.step):
commit = series.commits[upto]
- print ' ', col.Color(col.YELLOW, commit.hash, bright=False),
+ print ' ', col.Color(col.YELLOW, commit.hash[:8], bright=False),
print commit.subject
print
for arg in why_selected:
diff --git a/tools/patman/patchstream.py b/tools/patman/patchstream.py
index d630157f8f..da0488337b 100644
--- a/tools/patman/patchstream.py
+++ b/tools/patman/patchstream.py
@@ -248,8 +248,7 @@ class PatchStream:
# Detect the start of a new commit
elif commit_match:
self.CloseCommit()
- # TODO: We should store the whole hash, and just display a subset
- self.commit = commit.Commit(commit_match.group(1)[:8])
+ self.commit = commit.Commit(commit_match.group(1))
# Detect tags in the commit message
elif tag_match:
OpenPOWER on IntegriCloud