/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

Make root entry an InventoryDirectory, make EmptyTree really empty

Show diffs side-by-side

added added

removed removed

Lines of Context:
330
330
 
331
331
            if not (self.allow_pointless
332
332
                    or len(self.parents) > 1
333
 
                    or self.new_inv != self.basis_inv):
 
333
                    or (self.new_inv != self.basis_inv and 
 
334
                        (len(self.basis_inv) != 0 or len(self.new_inv) > 1))):
334
335
                raise PointlessCommit()
335
336
 
336
337
            self._emit_progress_update()