Mercurial > hg > CommitWatcher
diff mozbasewatcher.py @ 2:4cb3971d9d9d
commitwatcher/__init__.py commitwatcher/agent.py commitwatcher/main.py setup.py commitwatcher/commit.py commitwatcher/store.py mozbasewatcher.py
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 26 Sep 2013 21:35:29 -0700 |
parents | |
children | 2bc7eee11207 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mozbasewatcher.py Thu Sep 26 21:35:29 2013 -0700 @@ -0,0 +1,26 @@ +#!/usr/bin/env python + +""" +script for watching mozbase + +https://wiki.mozilla.org/Auto-tools/Projects/Mozbase +""" + +import optparse +import os +import sys +from + +here = os.path.dirname(os.path.realpath(__file__)) + +def main(args=sys.argv[1:]): + + usage = '%prog [options]' + parser = optparse.OptionParser(usage=usage, description=__doc__) + options, args = parser.parse_args(args) + + repo = 'http://hg.mozilla.org/mozilla-central' + + +if __name__ == '__main__': + main()