~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/bzr.py

Undo rename. Again.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
from bzrlib.branch import (
22
22
    BranchReferenceFormat,
 
23
    BzrBranchFormat4,
23
24
    BzrBranchFormat5,
24
25
    BzrBranchFormat6,
25
26
    BzrBranchFormat7,
26
27
    )
27
 
from bzrlib.bzrdir import BzrDirMetaFormat1
 
28
from bzrlib.bzrdir import (
 
29
    BzrDirFormat4,
 
30
    BzrDirFormat5,
 
31
    BzrDirFormat6,
 
32
    BzrDirMetaFormat1,
 
33
    )
28
34
from bzrlib.plugins.loom.branch import (
29
35
    BzrBranchLoomFormat1,
30
36
    BzrBranchLoomFormat6,
31
37
    )
32
 
from bzrlib.plugins.weave_fmt.branch import BzrBranchFormat4
33
 
from bzrlib.plugins.weave_fmt.bzrdir import (
34
 
    BzrDirFormat4,
35
 
    BzrDirFormat5,
36
 
    BzrDirFormat6,
37
 
    )
38
 
from bzrlib.plugins.weave_fmt.repository import (
39
 
    RepositoryFormat4,
40
 
    RepositoryFormat5,
41
 
    RepositoryFormat6,
42
 
    RepositoryFormat7,
43
 
    )
44
38
from bzrlib.repofmt.groupcompress_repo import RepositoryFormat2a
45
 
from bzrlib.repofmt.knitpack_repo import (
 
39
from bzrlib.repofmt.knitrepo import (
 
40
    RepositoryFormatKnit1,
 
41
    RepositoryFormatKnit3,
 
42
    RepositoryFormatKnit4,
 
43
    )
 
44
from bzrlib.repofmt.pack_repo import (
46
45
    RepositoryFormatKnitPack1,
47
46
    RepositoryFormatKnitPack3,
48
47
    RepositoryFormatKnitPack4,
49
48
    RepositoryFormatKnitPack5,
50
49
    )
51
 
from bzrlib.repofmt.knitrepo import (
52
 
    RepositoryFormatKnit1,
53
 
    RepositoryFormatKnit3,
54
 
    RepositoryFormatKnit4,
 
50
from bzrlib.repofmt.weaverepo import (
 
51
    RepositoryFormat4,
 
52
    RepositoryFormat5,
 
53
    RepositoryFormat6,
 
54
    RepositoryFormat7,
55
55
    )
56
56
from lazr.enum import (
57
57
    DBEnumeratedType,