~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transform.py

Pass the text_sha1 on to tt.create_file

Show diffs side-by-side

added added

removed removed

Lines of Context:
2626
2626
            filters = wt._content_filter_stack(tree_path)
2627
2627
            contents = filtered_output_bytes(contents, filters,
2628
2628
                ContentFilterContext(tree_path, tree))
2629
 
        tt.create_file(contents, trans_id)
 
2629
        tt.create_file(contents, trans_id, sha1=text_sha1)
2630
2630
        pb.update('Adding file contents', count + offset, total)
2631
2631
 
2632
2632