# HG changeset patch # User Jeff Hammel # Date 1383636032 28800 # Node ID 035368f8484747b88629e54ce51665f24cc5c0d2 # Parent 798b747b65d657b32d2d68be3c4b47004e6c4370 indent diff -r 798b747b65d6 -r 035368f84847 commitwatcher/store.py --- a/commitwatcher/store.py Mon Nov 04 22:25:45 2013 -0800 +++ b/commitwatcher/store.py Mon Nov 04 23:20:32 2013 -0800 @@ -1,3 +1,7 @@ +""" +storage classes for commits and related data +""" + from abc import abstractmethod __all__ = ['CommitStore', 'MemoryStore'] @@ -60,6 +64,6 @@ def store(self, commit): paths = self.paths(commit) for path in paths: - self.path_to_commit.set_default(path, []).append(commit) - raise NotImplementedError() + self.path_to_commit.set_default(path, []).append(commit) + raise NotImplementedError