~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to obsolete/unshelve

  • Committer: Aaron Bentley
  • Date: 2007-12-21 04:03:41 UTC
  • mfrom: (596.1.1 bzrtools)
  • Revision ID: aaron.bentley@utoronto.ca-20071221040341-pi6g35z6su4wou8k
Merge from other bzrtools

Show diffs side-by-side

added added

removed removed

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