comparison commitwatcher/commit.py @ 2:4cb3971d9d9d

commitwatcher/__init__.py commitwatcher/agent.py commitwatcher/main.py setup.py commitwatcher/commit.py commitwatcher/store.py mozbasewatcher.py
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 26 Sep 2013 21:35:29 -0700
parents
children a8e21cfda5fe
comparison
equal deleted inserted replaced
1:4e24f3c6610c 2:4cb3971d9d9d
1 """
2 commit object model
3 """
4
5 class Commit(object):
6
7 def __init__(self, message, datetime, author, paths, link=None, identity=None):
8 self.message = message
9 self.datetime = datetime
10 self.author= author
11 self.paths = paths
12 self.link = link
13 self.identity = identify
14