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

Merge further 2to3 fixes and correction for getcwd changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3238
3238
        self._ensure_real()
3239
3239
        if isinstance(self._custom_format, branch.BranchFormatMetadir):
3240
3240
            branch_class = self._custom_format._branch_class()
3241
 
            heads_to_fetch_impl = branch_class.heads_to_fetch.im_func
3242
 
            if heads_to_fetch_impl is branch.Branch.heads_to_fetch.im_func:
 
3241
            heads_to_fetch_impl = branch_class.heads_to_fetch.__func__
 
3242
            if heads_to_fetch_impl is branch.Branch.heads_to_fetch.__func__:
3243
3243
                return True
3244
3244
        return False
3245
3245