/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Jelmer Vernooij
  • Date: 2009-05-10 01:26:54 UTC
  • mto: This revision was merged to the branch mainline in revision 4363.
  • Revision ID: jelmer@samba.org-20090510012654-jp9ufxquekaokbeo
Clarify name for LossyPushToSameVCS exception.

Show diffs side-by-side

added added

removed removed

Lines of Context:
884
884
        inter = InterBranch.get(self, target)
885
885
        lossy_push = getattr(inter, "lossy_push", None)
886
886
        if lossy_push is None:
887
 
            raise errors.DpushToNative(target)
 
887
            raise errors.LossyPushToSameVCS(self, target)
888
888
        return lossy_push(stop_revision)
889
889
 
890
890
    def basis_tree(self):