/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: 2007-10-22 22:44:54 UTC
  • mto: This revision was merged to the branch mainline in revision 2931.
  • Revision ID: robertc@robertcollins.net-20071022224454-mq7ff0qe7evdupb0
Remove an unnecessary assertion.

Show diffs side-by-side

added added

removed removed

Lines of Context:
702
702
        report_changes = self.reporter.is_verbose()
703
703
        deleted_ids = []
704
704
        deleted_paths = set()
 
705
        # XXX: Note that entries may have the wrong kind because the entry does
 
706
        # not reflect the status on disk.
705
707
        work_inv = self.work_tree.inventory
706
 
        assert work_inv.root is not None
707
 
        # XXX: Note that entries may have the wrong kind.
708
708
        entries = work_inv.iter_entries_by_dir(
709
709
            specific_file_ids=self.specific_file_ids, yield_parents=True)
710
710
        for path, existing_ie in entries: