/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/plugins/weave_fmt/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2018-04-02 00:52:27 UTC
  • mfrom: (6939 work)
  • mto: This revision was merged to the branch mainline in revision 7274.
  • Revision ID: jelmer@jelmer.uk-20180402005227-pecflp1mvdjrjqd6
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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',
49
49
)
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',
54
54
)
60
60
# the repository is not separately opened are similar.
61
61
 
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'
66
66
    )
95
95
 
96
96
 
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",
99
99
    "BzrDirFormat4")
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",
102
102
    "BzrDirFormat5")
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",
105
105
    "BzrDirFormat6")
106
106
 
107
107
 
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")
113
113
 
114
114