~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Robert Collins
  • Date: 2006-04-12 04:57:34 UTC
  • mto: This revision was merged to the branch mainline in revision 1654.
  • Revision ID: robertc@robertcollins.net-20060412045734-3e03b7af0860a5a9
 * 'pull' and 'push' now normalise the revision history, so that any two
   branches with the same tip revision will have the same output from 'log'.
   (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
394
394
 
395
395
 
396
396
class DivergedBranches(BzrError):
 
397
 
397
398
    def __init__(self, branch1, branch2):
398
399
        BzrError.__init__(self, "These branches have diverged.  Try merge.")
399
400
        self.branch1 = branch1