/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/commit.py

  • Committer: Robert Collins
  • Date: 2008-11-18 04:08:30 UTC
  • mto: This revision was merged to the branch mainline in revision 4183.
  • Revision ID: robertc@robertcollins.net-20081118040830-r2h40qd6q5yq7mcq
CommitBuilder handles deletes via record_iter_entries.

Show diffs side-by-side

added added

removed removed

Lines of Context:
437
437
        # unless deletes occured, in which case the length is irrelevant.
438
438
        if (self.any_entries_deleted or 
439
439
            (len(self.builder.new_inventory) != 1 and
440
 
             self.builder.any_entries_changed())):
 
440
             self.builder.any_changes())):
441
441
            return
442
442
        raise PointlessCommit()
443
443