Mercurial > hg > CommitWatcher
view mozbasewatcher.py @ 6:883c88b13142
commitwatcher/agent.py commitwatcher/store.py mozbasewatcher.py
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Fri, 27 Sep 2013 13:03:40 -0700 |
parents | 2bc7eee11207 |
children | 7ae60d2ff1c2 |
line wrap: on
line source
#!/usr/bin/env python """ script for watching mozbase https://wiki.mozilla.org/Auto-tools/Projects/Mozbase """ import optparse import os import sys from commitwatcher import FeedAgent def main(args=sys.argv[1:]): # parse command line args usage = '%prog [options]' parser = optparse.OptionParser(usage=usage, description=__doc__) options, args = parser.parse_args(args) # watch mozilla-central repo = 'http://hg.mozilla.org/mozilla-central' watcher = FeedAgent(repository=repo) watcher.update() if __name__ == '__main__': main()