/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: 2017-06-08 23:30:31 UTC
  • mto: This revision was merged to the branch mainline in revision 6690.
  • Revision ID: jelmer@jelmer.uk-20170608233031-3qavls2o7a1pqllj
Update imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
from ... import (
22
22
    conflicts as _mod_conflicts,
23
23
    errors,
24
 
    inventory,
25
24
    osutils,
26
25
    revision as _mod_revision,
27
26
    transform,
 
27
    )
 
28
from ...bzr import (
 
29
    inventory,
28
30
    xml5,
29
31
    )
30
32
from ...decorators import needs_read_lock
36
38
from ...workingtree import (
37
39
    WorkingTreeFormat,
38
40
    )
39
 
from ...workingtree_3 import (
 
41
from ...bzr.workingtree_3 import (
40
42
    PreDirStateWorkingTree,
41
43
    )
42
44