~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to unshelve

  • Committer: Aaron Bentley
  • Date: 2005-07-27 17:57:32 UTC
  • Revision ID: abentley@panoramicfeedback.com-20050727175732-3637e3a9c1af9c33
Added iter_patched, handled files with no terminating newline

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
 
6
14
if __name__ == '__main__':
7
 
    sys.exit(shelf.main(sys.argv))
 
15
    sys.exit(main(sys.argv) and 0 or 1)