/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

  • Committer: Robert Collins
  • Date: 2007-10-03 08:44:03 UTC
  • mto: This revision was merged to the branch mainline in revision 2933.
  • Revision ID: robertc@robertcollins.net-20071003084403-e8j4dft472ww2ucv
Remove some arbitrary differences from bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
339
339
        return response[0] == 'yes'
340
340
 
341
341
    def has_same_location(self, other):
342
 
        return (self.base == other.base)
 
342
        return (self.__class__ == other.__class__ and
 
343
                self.bzrdir.transport.base == other.bzrdir.transport.base)
343
344
        
344
345
    def get_graph(self, other_repository=None):
345
346
        """Return the graph for this repository format"""