375
376
assert response[0] in ('yes', 'no'), 'unexpected response code %s' % (response,)
376
377
return response[0] == 'yes'
378
387
def has_same_location(self, other):
379
388
return (self.__class__ == other.__class__ and
380
389
self.bzrdir.transport.base == other.bzrdir.transport.base)