/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

(jelmer) Simplify handling of server probing. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
268
268
        """
269
269
        if path is None:
270
270
            path = osutils.getcwd()
271
 
        control = controldir.ControlDir.open(path, _unsupported)
272
 
        return control.open_workingtree(_unsupported)
 
271
        control = controldir.ControlDir.open(path, _unsupported=_unsupported)
 
272
        return control.open_workingtree(unsupported=_unsupported)
273
273
 
274
274
    @staticmethod
275
275
    def open_containing(path=None):