~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commit.py

  • Committer: Martin Pool
  • Date: 2006-03-20 20:02:21 UTC
  • mto: This revision was merged to the branch mainline in revision 1621.
  • Revision ID: mbp@sourcefrog.net-20060320200221-4341638c81ea56d3
Verbose commit shouldn't talk about every unchanged file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
128
128
class ReportCommitToLog(NullCommitReporter):
129
129
 
130
130
    def snapshot_change(self, change, path):
 
131
        if change == 'unchanged':
 
132
            return
131
133
        note("%s %s", change, path)
132
134
 
133
135
    def completed(self, revno, rev_id):
499
501
        # mark-merge.  
500
502
        for path, ie in self.new_inv.iter_entries():
501
503
            previous_entries = ie.find_previous_heads(
502
 
                self.parent_invs, 
 
504
                self.parent_invs,
503
505
                self.weave_store,
504
506
                self.branch.repository.get_transaction())
505
507
            if ie.revision is None: