changeset 22:f82d43bcb24e

commitwatcher/store.py
author Jeff Hammel <jhammel@mozilla.com>
date Wed, 02 Oct 2013 08:55:59 -0700
parents be7090ee7738
children e65090645a18
files commitwatcher/store.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/commitwatcher/store.py	Sun Sep 29 20:32:42 2013 -0700
+++ b/commitwatcher/store.py	Wed Oct 02 08:55:59 2013 -0700
@@ -31,6 +31,7 @@
 
     def __init__(self):
         self.path_to_commit = {}
+        self._commits = []
 
     def add(self, commit):
         raise NotImplementedError()
@@ -43,5 +44,5 @@
         paths = set()
         for commit in commits:
             for f in commit.files:
-
+                
                 raise NotImplementedError