Compare commits

..

2 Commits
cie ... cif

Author SHA1 Message Date
Simon Glass
39a4396362 patman: Update Commit to include the message
There is in fact a 'msg' member for Commit, set up by the
Patchstream._close_commit() function. Declare it in the docs and set it
to empty when the Commit is created.

Signed-off-by: Simon Glass <simon.glass@canonical.com>
2025-12-27 04:51:56 -07:00
Simon Glass
58667e0511 Merge branch 'cie' into 'master'
test: pytest and hook improvements

See merge request u-boot/u-boot!348
2025-12-27 03:37:54 +00:00

View File

@@ -17,6 +17,7 @@ class Commit:
Variables:
hash: Commit hash
subject: Subject line
msg: Commit message body (everything after the subject line)
tags: List of maintainer tag strings
changes: Dict containing a list of changes (single line strings).
The dict is indexed by change version (an integer)
@@ -35,6 +36,7 @@ class Commit:
def __init__(self, hash):
self.hash = hash
self.subject = ''
self.msg = ''
self.tags = []
self.changes = {}
self.cc_list = []