Mercurial > hg > CommitWatcher
view commitwatcher/commit.py @ 41:ce31890ac3cd
import
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 05 Nov 2013 02:23:11 -0800 |
parents | 4c53f4cc6ffe |
children | ef90a853afd1 |
line wrap: on
line source
""" commit object model """ class Commit(object): def __init__(self, message, datetime, author, paths, revision): self.message = message self.datetime = datetime self.author= author self.paths = paths self.revision = revision