Mercurial > hg > CommitWatcher
changeset 38:035368f84847
indent
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Mon, 04 Nov 2013 23:20:32 -0800 |
parents | 798b747b65d6 |
children | b04538e7f9f3 |
files | commitwatcher/store.py |
diffstat | 1 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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