Mercurial > hg > CommitWatcher
comparison commitwatcher/agent.py @ 8:2061b13f7aad
commitwatcher/agent.py
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Fri, 27 Sep 2013 14:04:04 -0700 |
parents | 296af1d32b6a |
children | 08dd6fbbec3a |
comparison
equal
deleted
inserted
replaced
7:296af1d32b6a | 8:2061b13f7aad |
---|---|
30 | 30 |
31 def update(self): | 31 def update(self): |
32 """update""" | 32 """update""" |
33 | 33 |
34 feed = feedparser.parse(self.feed()) | 34 feed = feedparser.parse(self.feed()) |
35 for entry in feedparser['entries']: | 35 for entry in feed['entries']: |
36 | 36 |
37 # get paths from diff | 37 # get paths from diff |
38 link = entry['link'] | 38 link = entry['link'] |
39 print link | 39 print link |
40 # TODO | 40 # TODO |