~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
249
249
        self._lock_count = 0
250
250
        self._leave_lock = False
251
251
 
 
252
    def has_same_location(self, other):
 
253
        return (self.__class__ == other.__class__ and
 
254
                self.bzrdir.transport.base == other.bzrdir.transport.base)
 
255
        
252
256
    def _ensure_real(self):
253
257
        """Ensure that there is a _real_repository set.
254
258