diff 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
line wrap: on
line diff
--- a/commitwatcher/commit.py	Sat Sep 28 20:33:17 2013 -0700
+++ b/commitwatcher/commit.py	Sun Sep 29 20:23:51 2013 -0700
@@ -4,11 +4,11 @@
 
 class Commit(object):
 
-    def __init__(self, message, datetime, author, paths, link=None, identity=None):
+    def __init__(self, message, datetime, author, paths, revision):
         self.message = message
         self.datetime = datetime
         self.author= author
         self.paths = paths
-        self.link = link
-        self.identity = identify
+        self.revision
 
+