~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to shelve

  • Committer: Aaron Bentley
  • Date: 2005-06-15 15:25:13 UTC
  • Revision ID: abentley@panoramicfeedback.com-20050615152512-e2afe3f794604a12
Added Michael Ellerman's shelf/unshelf

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
 
 
3
import sys
 
4
import shelf
 
5
 
 
6
def main(args):
 
7
    finished = shelf.parse_args(args)
 
8
 
 
9
    if finished:
 
10
        return True
 
11
    else:
 
12
        return shelf.shelve()
 
13
 
 
14
if __name__ == '__main__':
 
15
    sys.exit(main(sys.argv) and 0 or 1)