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:
Simon Glass 2020-10-29 21:46:32 -06:00
parent b5e188131f
commit a12ad7c940
1 changed files with 3 additions and 0 deletions

View File

@ -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.