mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
patman: Allow showing a Commit as a string
Use the subject of the Commit object when printing it out. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
b5e188131f
commit
a12ad7c940
1 changed files with 3 additions and 0 deletions
|
@ -41,6 +41,9 @@ class Commit:
|
|||
self.rtags = collections.defaultdict(set)
|
||||
self.warn = []
|
||||
|
||||
def __str__(self):
|
||||
return self.subject
|
||||
|
||||
def AddChange(self, version, info):
|
||||
"""Add a new change line to the change list for a version.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue