/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/repofmt/knitpack_repo.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:
26
26
    controldir,
27
27
    debug,
28
28
    errors,
29
 
    knit,
30
29
    osutils,
31
 
    pack,
32
30
    revision as _mod_revision,
33
31
    trace,
34
32
    tsort,
35
33
    ui,
 
34
    )
 
35
from breezy.bzr import (
 
36
    knit,
 
37
    pack,
36
38
    xml5,
37
39
    xml6,
38
40
    xml7,
39
41
    )
40
 
from breezy.knit import (
 
42
from breezy.bzr.knit import (
41
43
    _KnitGraphIndex,
42
44
    KnitPlainFactory,
43
45
    KnitVersionedFiles,
44
46
    )
45
47
""")
46
48
 
47
 
from .. import (
 
49
from ..bzr import (
48
50
    btree_index,
49
51
    )
50
 
from ..index import (
 
52
from ..bzr.index import (
51
53
    CombinedGraphIndex,
52
54
    GraphIndex,
53
55
    GraphIndexPrefixAdapter,
71
73
    viewitems,
72
74
    zip
73
75
    )
74
 
from ..vf_repository import (
 
76
from ..bzr.vf_repository import (
75
77
    StreamSource,
76
78
    )
77
79