/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/plugins/weave_fmt/workingtree.py

  • Committer: Jelmer Vernooij
  • Date: 2020-11-18 02:15:43 UTC
  • mfrom: (7490.40.117 work)
  • mto: This revision was merged to the branch mainline in revision 7526.
  • Revision ID: jelmer@jelmer.uk-20201118021543-0flrmtqv7ibat6yv
Merge lp:brz/3.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
    lock,
25
25
    osutils,
26
26
    revision as _mod_revision,
27
 
    transform,
28
27
    )
29
28
from ...bzr import (
30
29
    conflicts as _mod_bzr_conflicts,
31
30
    inventory,
 
31
    transform as bzr_transform,
32
32
    xml5,
33
33
    )
34
34
from ...mutabletree import MutableTree
113
113
        else:
114
114
            parent_trees = [(revision_id, basis_tree)]
115
115
        wt.set_parent_trees(parent_trees)
116
 
        transform.build_tree(basis_tree, wt)
 
116
        bzr_transform.build_tree(basis_tree, wt)
117
117
        for hook in MutableTree.hooks['post_build_tree']:
118
118
            hook(wt)
119
119
        return wt