~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/merge.py

[merge] john

Show diffs side-by-side

added added

removed removed

Lines of Context:
226
226
        self.conflict("Three-way conflict merging %s" % filename)
227
227
 
228
228
    def finalize(self):
229
 
        if not self.ignore_zero:
 
229
        if self.conflicts == 0:
 
230
            if not self.ignore_zero:
 
231
                note("All changes applied successfully.")
 
232
        else:
230
233
            note("%d conflicts encountered." % self.conflicts)
231
234
            
232
235
def get_tree(treespec, local_branch=None):