/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/workingtree.py

  • Committer: Robert Collins
  • Date: 2007-02-26 04:54:23 UTC
  • mto: (2255.11.3 dirstate)
  • mto: This revision was merged to the branch mainline in revision 2322.
  • Revision ID: robertc@robertcollins.net-20070226045423-h5irpxqoukh50bjd
Back out changing default format: its not ready yet.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2506
2506
        return self.get_format_string()
2507
2507
 
2508
2508
 
2509
 
__default_format = WorkingTreeFormat4()
 
2509
__default_format = WorkingTreeFormat3()
2510
2510
WorkingTreeFormat.register_format(__default_format)
2511
 
WorkingTreeFormat.register_format(WorkingTreeFormat3())
 
2511
WorkingTreeFormat.register_format(WorkingTreeFormat4())
2512
2512
WorkingTreeFormat.set_default_format(__default_format)
2513
2513
# formats which have no format string are not discoverable
2514
2514
# and not independently creatable, so are not registered.