~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-12-01 19:07:21 UTC
  • mfrom: (3845.1.1 repo_matching_bzrdir)
  • Revision ID: pqm@pqm.ubuntu.com-20081201190721-auckake4i6ws048z
(jam) Ensure that repo_fmt.matching_bzrdir.repository_format matches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2650
2650
            return False
2651
2651
        return self.get_format_description() == other.get_format_description()
2652
2652
 
 
2653
    @property
 
2654
    def repository_format(self):
 
2655
        # Using a property to avoid early loading of remote
 
2656
        return remote.RemoteRepositoryFormat()
 
2657
 
2653
2658
 
2654
2659
BzrDirFormat.register_control_server_format(RemoteBzrDirFormat)
2655
2660