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

(jelmer) Add WorkingTreeFormatRegistry. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2125
2125
 
2126
2126
    def __get_workingtree_format(self):
2127
2127
        if self._workingtree_format is None:
2128
 
            from bzrlib.workingtree import WorkingTreeFormat
2129
 
            self._workingtree_format = WorkingTreeFormat.get_default_format()
 
2128
            from bzrlib.workingtree import (
 
2129
                format_registry as wt_format_registry,
 
2130
                )
 
2131
            self._workingtree_format = wt_format_registry.get_default()
2130
2132
        return self._workingtree_format
2131
2133
 
2132
2134
    def __set_workingtree_format(self, wt_format):