Mercurial > hgsubversion
comparison svncommand.py @ 35:ef5d7a7aabb0
I meant ambiguous.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Fri, 17 Oct 2008 22:48:40 -0500 |
parents | 50d55c3e0d85 |
children | f537eb456cf7 |
comparison
equal
deleted
inserted
replaced
34:50d55c3e0d85 | 35:ef5d7a7aabb0 |
---|---|
81 return hg.update(repo, answers[0][0]) | 81 return hg.update(repo, answers[0][0]) |
82 elif len(answers) == 0: | 82 elif len(answers) == 0: |
83 ui.status('Revision %s did not produce an hg revision.\n' % rev) | 83 ui.status('Revision %s did not produce an hg revision.\n' % rev) |
84 return 1 | 84 return 1 |
85 else: | 85 else: |
86 ui.status('Non-ambiguous revision!\n') | 86 ui.status('Ambiguous revision!\n') |
87 ui.status('\n'.join(['%s on %s' % (node.hex(a[0]), a[1]) for a in | 87 ui.status('\n'.join(['%s on %s' % (node.hex(a[0]), a[1]) for a in |
88 answers]+[''])) | 88 answers]+[''])) |
89 return 1 | 89 return 1 |
90 | 90 |
91 | 91 |