# HG changeset patch # User Jeff Hammel # Date 1380729359 25200 # Node ID f82d43bcb24e2fbde3c963f3e03cf4a39ed5c21c # Parent be7090ee7738440583029a1d70e4c8aa2b257a47 commitwatcher/store.py diff -r be7090ee7738 -r f82d43bcb24e commitwatcher/store.py --- 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