1928
1928
# formats which have no format string are not discoverable
1929
1929
# and not independently creatable, so are not registered.
1930
1930
format_registry.register_lazy(
1931
"Bazaar-NG branch format 5\n", "breezy.branchfmt.fullhistory",
1931
"Bazaar-NG branch format 5\n", "breezy.bzr.fullhistory",
1932
1932
"BzrBranchFormat5")
1933
1933
format_registry.register_lazy(
1934
1934
"Bazaar Branch Format 6 (bzr 0.15)\n",
1935
"breezy.bzrbranch", "BzrBranchFormat6")
1935
"breezy.bzr.branch", "BzrBranchFormat6")
1936
1936
format_registry.register_lazy(
1937
1937
"Bazaar Branch Format 7 (needs bzr 1.6)\n",
1938
"breezy.bzrbranch", "BzrBranchFormat7")
1938
"breezy.bzr.branch", "BzrBranchFormat7")
1939
1939
format_registry.register_lazy(
1940
1940
"Bazaar Branch Format 8 (needs bzr 1.15)\n",
1941
"breezy.bzrbranch", "BzrBranchFormat8")
1941
"breezy.bzr.branch", "BzrBranchFormat8")
1942
1942
format_registry.register_lazy(
1943
1943
"Bazaar-NG Branch Reference Format 1\n",
1944
"breezy.bzrbranch", "BranchReferenceFormat")
1944
"breezy.bzr.branch", "BranchReferenceFormat")
1946
1946
format_registry.set_default_key("Bazaar Branch Format 7 (needs bzr 1.6)\n")