~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transform.py

  • Committer: Aaron Bentley
  • Date: 2006-12-10 18:14:39 UTC
  • mto: (2255.6.1 dirstate)
  • mto: This revision was merged to the branch mainline in revision 2322.
  • Revision ID: aaron.bentley@utoronto.ca-20061210181439-zftpbilg9c0tnbt6
Make add recursive for children of added entries

Show diffs side-by-side

added added

removed removed

Lines of Context:
778
778
                    file_id = self.tree_file_id(trans_id)
779
779
                    if file_id is not None:
780
780
                        limbo_inv[trans_id] = inv[file_id]
781
 
                        del inv[file_id]
 
781
                        inv.remove_recursive_id(file_id)
782
782
        finally:
783
783
            child_pb.finished()
784
784