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

Fix argument ordering.

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
        raise NotImplementedError(self._branch_name_to_ref)
86
86
 
87
87
    if bzrlib_version >= (2, 2):
88
 
        def open_branch(self, name=None, ignore_fallbacks=None,
89
 
            unsupported=False):
 
88
        def open_branch(self, name=None, unsupported=False, 
 
89
            ignore_fallbacks=None):
90
90
            return self._open_branch(name=name,
91
91
                ignore_fallbacks=ignore_fallbacks, unsupported=unsupported)
92
92
    else: