diff options
author | Tom Rini <trini@ti.com> | 2013-11-25 10:42:05 -0500 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-11-25 10:42:05 -0500 |
commit | 5a4fe1aaf1210b02bb98e347993ffbcffeb4ffaa (patch) | |
tree | 5495e6b384533f421df3cd47be4df51832219d89 /tools/patman/commit.py | |
parent | e8a8bab52c98950a4befa24526e8ffeb1b3f1c31 (diff) | |
parent | 8426d8b0899eb6a9845b3468662512a8da236241 (diff) |
Merge branch 'buildpatman' of http://git.denx.de/u-boot-x86
Diffstat (limited to 'tools/patman/commit.py')
-rw-r--r-- | tools/patman/commit.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/patman/commit.py b/tools/patman/commit.py index 900cfb3a5a6..89cce7f88a2 100644 --- a/tools/patman/commit.py +++ b/tools/patman/commit.py @@ -21,6 +21,7 @@ class Commit: changes: Dict containing a list of changes (single line strings). The dict is indexed by change version (an integer) cc_list: List of people to aliases/emails to cc on this commit + notes: List of lines in the commit (not series) notes """ def __init__(self, hash): self.hash = hash @@ -28,6 +29,7 @@ class Commit: self.tags = [] self.changes = {} self.cc_list = [] + self.notes = [] def AddChange(self, version, info): """Add a new change line to the change list for a version. |