~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/plugins/weave_fmt/__init__.py

  • Committer: Patch Queue Manager
  • Date: 2015-12-17 18:39:00 UTC
  • mfrom: (6606.1.2 fix-float)
  • Revision ID: pqm@pqm.ubuntu.com-20151217183900-0719du2uv1kwu3lc
(vila) Inline testtools private method to fix an issue in xenial (the
 private implementation has changed in an backward incompatible way).
 (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
These were formats present in pre-1.0 version of Bazaar.
20
20
"""
21
21
 
 
22
from __future__ import absolute_import
 
23
 
22
24
# Since we are a built-in plugin we share the bzrlib version
23
25
from bzrlib import version_info
24
26
 
84
86
register_metadir(controldir.format_registry, 'metaweave',
85
87
    'bzrlib.plugins.weave_fmt.repository.RepositoryFormat7',
86
88
    'Transitional format in 0.8.  Slower than knit.',
87
 
    branch_format='bzrlib.branch.BzrBranchFormat5',
 
89
    branch_format='bzrlib.branchfmt.fullhistory.BzrBranchFormat5',
88
90
    tree_format='bzrlib.workingtree_3.WorkingTreeFormat3',
89
91
    hidden=True,
90
92
    deprecated=True)