Mercurial > hg > CommitWatcher
view commitwatcher/commit.py @ 15:77118f83b5b7
almost does somethign
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sat, 28 Sep 2013 09:20:14 -0700 |
parents | 4cb3971d9d9d |
children | a8e21cfda5fe |
line wrap: on
line source
""" commit object model """ class Commit(object): def __init__(self, message, datetime, author, paths, link=None, identity=None): self.message = message self.datetime = datetime self.author= author self.paths = paths self.link = link self.identity = identify