~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/mutabletree.py

  • Committer: Jelmer Vernooij
  • Date: 2012-01-24 00:16:15 UTC
  • mto: This revision was merged to the branch mainline in revision 6464.
  • Revision ID: jelmer@samba.org-20120124001615-ru3uwevs9d48kxcn
Add root_inventory.

Show diffs side-by-side

added added

removed removed

Lines of Context:
615
615
            # nb: this relies on someone else checking that the path we're using
616
616
            # doesn't contain symlinks.
617
617
            parent_ie = self._convert_to_directory(parent_ie, inv_dirname)
618
 
        file_id = self.action(self.tree.inventory, parent_ie, path, kind)
 
618
        file_id = self.action(self.tree, parent_ie, path, kind)
619
619
        entry = _mod_inventory.make_entry(kind, basename, parent_ie.file_id,
620
620
            file_id=file_id)
621
621
        self._invdelta[inv_path] = (None, inv_path, entry.file_id, entry)