~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/clone.py

 added test for function fileid_involved

Show diffs side-by-side

added added

removed removed

Lines of Context:
108
108
 
109
109
def _copy_text_weaves(branch_from, branch_to, history):
110
110
    from_set = set(branch_from.get_ancestry(history[-1])[1:])
111
 
    file_ids = branch_from.file_involved( from_set )
 
111
    file_ids = branch_from.fileid_involved_by_set( from_set )
112
112
    branch_to.weave_store.copy_multi(branch_from.weave_store, file_ids )
113
113
 
114
114
def _copy_revision_store(branch_from, branch_to, history):