Mercurial > hg > CommitWatcher
comparison 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 |
comparison
equal
deleted
inserted
replaced
| 1:4e24f3c6610c | 2:4cb3971d9d9d |
|---|---|
| 1 #!/usr/bin/env python | |
| 2 | |
| 3 """ | |
| 4 script for watching mozbase | |
| 5 | |
| 6 https://wiki.mozilla.org/Auto-tools/Projects/Mozbase | |
| 7 """ | |
| 8 | |
| 9 import optparse | |
| 10 import os | |
| 11 import sys | |
| 12 from | |
| 13 | |
| 14 here = os.path.dirname(os.path.realpath(__file__)) | |
| 15 | |
| 16 def main(args=sys.argv[1:]): | |
| 17 | |
| 18 usage = '%prog [options]' | |
| 19 parser = optparse.OptionParser(usage=usage, description=__doc__) | |
| 20 options, args = parser.parse_args(args) | |
| 21 | |
| 22 repo = 'http://hg.mozilla.org/mozilla-central' | |
| 23 | |
| 24 | |
| 25 if __name__ == '__main__': | |
| 26 main() |
