comparison commitwatcher/commit.py @ 20:a8e21cfda5fe

wip
author Jeff Hammel <jhammel@mozilla.com>
date Sun, 29 Sep 2013 20:23:51 -0700
parents 4cb3971d9d9d
children 4c53f4cc6ffe
comparison
equal deleted inserted replaced
19:091fd9f40b05 20:a8e21cfda5fe
2 commit object model 2 commit object model
3 """ 3 """
4 4
5 class Commit(object): 5 class Commit(object):
6 6
7 def __init__(self, message, datetime, author, paths, link=None, identity=None): 7 def __init__(self, message, datetime, author, paths, revision):
8 self.message = message 8 self.message = message
9 self.datetime = datetime 9 self.datetime = datetime
10 self.author= author 10 self.author= author
11 self.paths = paths 11 self.paths = paths
12 self.link = link 12 self.revision
13 self.identity = identify
14 13
14