~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

  • Committer: Martin Pool
  • Date: 2009-03-24 04:49:51 UTC
  • mfrom: (3407.2.20 controlfiles)
  • mto: This revision was merged to the branch mainline in revision 4202.
  • Revision ID: mbp@sourcefrog.net-20090324044951-k5h6x6u0zz4721m5
bzrdir takes responsibility for file/directory unix modes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1258
1258
        self._lock_count = 0
1259
1259
        self._leave_lock = False
1260
1260
 
1261
 
    def _ensure_real_transport(self):
 
1261
    def _get_real_transport(self):
1262
1262
        # if we try vfs access, return the real branch's vfs transport
1263
1263
        self._ensure_real()
1264
1264
        return self._real_branch._transport
1265
1265
 
1266
 
    _transport = property(_ensure_real_transport)
 
1266
    _transport = property(_get_real_transport)
1267
1267
 
1268
1268
    def __str__(self):
1269
1269
        return "%s(%s)" % (self.__class__.__name__, self.base)