54
54
def transform_tree(from_tree, to_tree, interesting_ids=None):
55
55
from_tree.lock_tree_write()
57
57
operation.add_cleanup(from_tree.unlock)
58
58
operation.run_simple(from_tree.branch, to_tree, from_tree,
59
59
ignore_zero=True, interesting_ids=interesting_ids, this_tree=from_tree)