/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/repository.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:
643
643
        This might return False even when two repository objects are accessing
644
644
        the same physical repository via different URLs.
645
645
        """
646
 
        ## if self.__class__ is not other.__class__:
647
 
        ##     return False
648
 
        return (self.base == other.base)
 
646
        if self.__class__ is not other.__class__:
 
647
            return False
 
648
        return (self.control_files._transport.base ==
 
649
                other.control_files._transport.base)
649
650
 
650
651
    def is_in_write_group(self):
651
652
        """Return True if there is an open write group.