43
43
# disk format string as a key for the network_name because they meet the
44
44
# constraints (simple string, unique, immutable).
45
45
_mod_repository.network_format_registry.register_lazy(
46
"Bazaar-NG branch, format 5\n",
46
b"Bazaar-NG branch, format 5\n",
47
47
'breezy.plugins.weave_fmt.repository',
48
48
'RepositoryFormat5',
50
50
_mod_repository.network_format_registry.register_lazy(
51
"Bazaar-NG branch, format 6\n",
51
b"Bazaar-NG branch, format 6\n",
52
52
'breezy.plugins.weave_fmt.repository',
53
53
'RepositoryFormat6',
60
60
# the repository is not separately opened are similar.
62
62
_mod_repository.format_registry.register_lazy(
63
'Bazaar-NG Repository format 7',
63
b'Bazaar-NG Repository format 7',
64
64
'breezy.plugins.weave_fmt.repository',
65
65
'RepositoryFormat7'
97
97
BzrProber.formats.register_lazy(
98
"Bazaar-NG branch, format 0.0.4\n", "breezy.plugins.weave_fmt.bzrdir",
98
b"Bazaar-NG branch, format 0.0.4\n", "breezy.plugins.weave_fmt.bzrdir",
100
100
BzrProber.formats.register_lazy(
101
"Bazaar-NG branch, format 5\n", "breezy.plugins.weave_fmt.bzrdir",
101
b"Bazaar-NG branch, format 5\n", "breezy.plugins.weave_fmt.bzrdir",
103
103
BzrProber.formats.register_lazy(
104
"Bazaar-NG branch, format 6\n", "breezy.plugins.weave_fmt.bzrdir",
104
b"Bazaar-NG branch, format 6\n", "breezy.plugins.weave_fmt.bzrdir",
108
108
_mod_branch.format_registry.register_extra_lazy(
109
109
'breezy.plugins.weave_fmt.branch', 'BzrBranchFormat4')
110
110
_mod_branch.network_format_registry.register_lazy(
111
"Bazaar-NG branch, format 6\n",
111
b"Bazaar-NG branch, format 6\n",
112
112
'breezy.plugins.weave_fmt.branch', "BzrBranchFormat4")