# HG changeset patch # User Jeff Hammel # Date 1380511962 25200 # Node ID be7090ee7738440583029a1d70e4c8aa2b257a47 # Parent a8e21cfda5febf5d8d072d8eb437e21c817a4c1e wip diff -r a8e21cfda5fe -r be7090ee7738 commitwatcher/agent.py --- a/commitwatcher/agent.py Sun Sep 29 20:23:51 2013 -0700 +++ b/commitwatcher/agent.py Sun Sep 29 20:32:42 2013 -0700 @@ -119,4 +119,7 @@ class FeedAgentHTML(FeedAgent): - pass # TODO! + """ + http://stackoverflow.com/questions/11709079/parsing-html-python + """ + diff -r a8e21cfda5fe -r be7090ee7738 commitwatcher/store.py --- a/commitwatcher/store.py Sun Sep 29 20:23:51 2013 -0700 +++ b/commitwatcher/store.py Sun Sep 29 20:32:42 2013 -0700 @@ -37,11 +37,11 @@ def paths(self, *commits): """ - return touched by commits + return paths touched by commits """ paths = set() for commit in commits: for f in commit.files: - + raise NotImplementedError