/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

Set default wt to 4, as in dirstate branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
2707
2707
    def _initial_inventory(self):
2708
2708
        return Inventory(root_id=generate_ids.gen_root_id())
2709
2709
 
2710
 
# formats which have no format string are not discoverable
2711
 
# and not independently creatable, so are not registered.
2712
 
__default_format = WorkingTreeFormat3()
2713
 
## __default_format = WorkingTreeFormat4()
 
2710
__default_format = WorkingTreeFormat4()
2714
2711
WorkingTreeFormat.register_format(__default_format)
2715
 
WorkingTreeFormat.register_format(WorkingTreeFormat4())
 
2712
WorkingTreeFormat.register_format(WorkingTreeFormat3())
2716
2713
WorkingTreeFormat.register_format(WorkingTreeFormatAB1())
2717
 
## WorkingTreeFormat.register_format(WorkingTreeFormat3())
2718
2714
WorkingTreeFormat.set_default_format(__default_format)
2719
2715
# formats which have no format string are not discoverable
2720
2716
# and not independently creatable, so are not registered.