~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-07-04 08:08:08 UTC
  • mfrom: (2568.2.10 add)
  • Revision ID: pqm@pqm.ubuntu.com-20070704080808-0ptk5p5yiwxjgnt7
(robertc) Overhaul smart_add to be an api on MutableTree allowing specialisation and reducing some cruft. (Robert Collins, Martin Pool)

Show diffs side-by-side

added added

removed removed

Lines of Context:
615
615
        # should probably put it back with the previous ID.
616
616
        # the read and write working inventory should not occur in this 
617
617
        # function - they should be part of lock_write and unlock.
618
 
        inv = self.read_working_inventory()
 
618
        inv = self.inventory
619
619
        for f, file_id, kind in zip(files, ids, kinds):
620
620
            assert kind is not None
621
621
            if file_id is None:
623
623
            else:
624
624
                file_id = osutils.safe_file_id(file_id)
625
625
                inv.add_path(f, kind=kind, file_id=file_id)
626
 
        self._write_inventory(inv)
 
626
            self._inventory_is_modified = True
627
627
 
628
628
    @needs_tree_write_lock
629
629
    def _gather_kinds(self, files, kinds):