/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 bzrlib/repository.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-04-20 02:28:21 UTC
  • mfrom: (1666.1.10 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060420022821-4337b8fa4942d8fe
Make knits the default format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1380
1380
 
1381
1381
# formats which have no format string are not discoverable
1382
1382
# and not independently creatable, so are not registered.
1383
 
_default_format = RepositoryFormat7()
 
1383
RepositoryFormat.register_format(RepositoryFormat7())
 
1384
_default_format = RepositoryFormatKnit1()
1384
1385
RepositoryFormat.register_format(_default_format)
1385
 
RepositoryFormat.register_format(RepositoryFormatKnit1())
1386
1386
RepositoryFormat.set_default_format(_default_format)
1387
1387
_legacy_formats = [RepositoryFormat4(),
1388
1388
                   RepositoryFormat5(),
1511
1511
class InterWeaveRepo(InterRepository):
1512
1512
    """Optimised code paths between Weave based repositories."""
1513
1513
 
1514
 
    _matching_repo_format = _default_format
 
1514
    _matching_repo_format = RepositoryFormat7()
1515
1515
    """Repository format for testing with."""
1516
1516
 
1517
1517
    @staticmethod