~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

[merge] robert

Show diffs side-by-side

added added

removed removed

Lines of Context:
276
276
 
277
277
class DivergedBranches(BzrError):
278
278
    def __init__(self, branch1, branch2):
279
 
        BzrError.__init__(self, "These branches have diverged.")
 
279
        BzrError.__init__(self, "These branches have diverged.  Try merge.")
280
280
        self.branch1 = branch1
281
281
        self.branch2 = branch2
282
282