changeset 21:be7090ee7738

wip
author Jeff Hammel <jhammel@mozilla.com>
date Sun, 29 Sep 2013 20:32:42 -0700
parents a8e21cfda5fe
children f82d43bcb24e
files commitwatcher/agent.py commitwatcher/store.py
diffstat 2 files changed, 6 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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
+    """
+
--- 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