~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

  • Committer: Benoît Pierre
  • Date: 2008-12-02 21:21:45 UTC
  • mfrom: (3878 +trunk)
  • mto: (4056.1.1 trunk2)
  • mto: This revision was merged to the branch mainline in revision 4058.
  • Revision ID: benoit.pierre@gmail.com-20081202212145-e2lr5ec5vyu0xp13
Merge with upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1279
1279
 
1280
1280
class RemoteBranchFormat(branch.BranchFormat):
1281
1281
 
 
1282
    def __init__(self):
 
1283
        super(RemoteBranchFormat, self).__init__()
 
1284
        self._matchingbzrdir = RemoteBzrDirFormat()
 
1285
        self._matchingbzrdir.set_branch_format(self)
 
1286
 
1282
1287
    def __eq__(self, other):
1283
1288
        return (isinstance(other, RemoteBranchFormat) and 
1284
1289
            self.__dict__ == other.__dict__)