~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Patch Queue Manager
  • Date: 2011-10-03 15:17:22 UTC
  • mfrom: (6165.3.2 tags-if-no-revgraph)
  • Revision ID: pqm@pqm.ubuntu.com-20111003151722-69gh10qcel6s5gfo
(jelmer) Support using "bzr tags" against branches that do not support
 looking up revision numbers. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
5816
5816
                    if isinstance(revno, tuple):
5817
5817
                        revno = '.'.join(map(str, revno))
5818
5818
                except (errors.NoSuchRevision,
5819
 
                        errors.GhostRevisionsHaveNoRevno):
 
5819
                        errors.GhostRevisionsHaveNoRevno,
 
5820
                        errors.UnsupportedOperation):
5820
5821
                    # Bad tag data/merges can lead to tagged revisions
5821
5822
                    # which are not in this branch. Fail gracefully ...
5822
5823
                    revno = '?'