/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/repository.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:
30
30
import itertools
31
31
 
32
32
from breezy import (
33
 
    xml5,
34
33
    graph as _mod_graph,
35
34
    ui,
36
35
    )
 
36
from breezy.bzr import (
 
37
    xml5,
 
38
    )
37
39
""")
38
40
from ... import (
39
41
    debug,
44
46
    trace,
45
47
    tuned_gzip,
46
48
    urlutils,
 
49
    )
 
50
from ...bzr import (
47
51
    versionedfile,
48
52
    weave,
49
53
    weavefile,
52
56
from ...repository import (
53
57
    InterRepository,
54
58
    )
55
 
from ...bzrrepository import (
 
59
from ...bzr.repository import (
56
60
    RepositoryFormatMetaDir,
57
61
    )
58
62
from ...sixish import (
59
63
    BytesIO,
60
64
    )
61
65
from ...store.text import TextStore
62
 
from ...versionedfile import (
 
66
from ...bzr.versionedfile import (
63
67
    AbsentContentFactory,
64
68
    FulltextContentFactory,
65
69
    VersionedFiles,
66
70
    )
67
 
from ...vf_repository import (
 
71
from ...bzr.vf_repository import (
68
72
    InterSameDataRepository,
69
73
    VersionedFileCommitBuilder,
70
74
    VersionedFileRepository,