~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: Aaron Bentley
  • Date: 2006-08-25 02:18:43 UTC
  • mto: This revision was merged to the branch mainline in revision 1997.
  • Revision ID: aaron.bentley@utoronto.ca-20060825021843-7410628c4371b2fb
Restore RepositoryFormatKnit1 as the default

Show diffs side-by-side

added added

removed removed

Lines of Context:
1715
1715
# formats which have no format string are not discoverable
1716
1716
# and not independently creatable, so are not registered.
1717
1717
RepositoryFormat.register_format(RepositoryFormat7())
1718
 
_default_format = RepositoryFormatKnit2()
 
1718
_default_format = RepositoryFormatKnit1()
1719
1719
RepositoryFormat.register_format(_default_format)
1720
 
RepositoryFormat.register_format(RepositoryFormatKnit1())
 
1720
RepositoryFormat.register_format(RepositoryFormatKnit2())
1721
1721
RepositoryFormat.set_default_format(_default_format)
1722
1722
_legacy_formats = [RepositoryFormat4(),
1723
1723
                   RepositoryFormat5(),