~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revisionspec.py

  • Committer: John Arbash Meinel
  • Date: 2006-08-21 23:16:13 UTC
  • mto: This revision was merged to the branch mainline in revision 1979.
  • Revision ID: john@arbash-meinel.com-20060821231613-3b941103e547ad8c
Update and test the tag: spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
305
305
    prefix = 'tag:'
306
306
 
307
307
    def _match_on(self, branch, revs):
308
 
        raise BzrError('tag: namespace registered, but not implemented.')
 
308
        raise errors.InvalidRevisionSpec(self.prefix + self.spec, branch,
 
309
                                         'tag: namespace registered,'
 
310
                                         ' but not implemented')
309
311
 
310
312
SPEC_TYPES.append(RevisionSpec_tag)
311
313