diff options
author | Tom Rini <trini@ti.com> | 2014-12-04 09:24:05 -0500 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-12-04 09:24:05 -0500 |
commit | 97cdf64026c7d749dd7a5c0dbaba7a60a7292ac9 (patch) | |
tree | 2bd7522657fef09538d52b4dd6cef71a9031d273 /tools/patman/patchstream.py | |
parent | f0c6e1c31b94f193047619b6adf67c2d792b659e (diff) | |
parent | 1d8104fe8897c5fec3e03b4165bc67c57eeeaa72 (diff) | |
download | u-boot-imx-97cdf64026c7d749dd7a5c0dbaba7a60a7292ac9.zip u-boot-imx-97cdf64026c7d749dd7a5c0dbaba7a60a7292ac9.tar.gz u-boot-imx-97cdf64026c7d749dd7a5c0dbaba7a60a7292ac9.tar.bz2 |
Merge branch 'sandbox' of git://git.denx.de/u-boot-x86
Diffstat (limited to 'tools/patman/patchstream.py')
-rw-r--r-- | tools/patman/patchstream.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/patman/patchstream.py b/tools/patman/patchstream.py index d630157..da04883 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: |