Browse Source

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>
Simon Glass 3 years ago
parent
commit
a12ad7c940
1 changed files with 3 additions and 0 deletions
  1. 3 0
      tools/patman/commit.py

+ 3 - 0
tools/patman/commit.py

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