/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/branch.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:
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")
1945
1945
 
1946
1946
format_registry.set_default_key("Bazaar Branch Format 7 (needs bzr 1.6)\n")
1947
1947