~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/chroot.py

  • Committer: Robert Collins
  • Date: 2008-04-04 00:02:23 UTC
  • mfrom: (3331 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3332.
  • Revision ID: robertc@robertcollins.net-20080404000223-m270i246sp9uatmt
Fix conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
116
116
    def has(self, relpath):
117
117
        return self._call('has', relpath)
118
118
 
 
119
    def is_readonly(self):
 
120
        return self.server.backing_transport.is_readonly()
 
121
 
119
122
    def iter_files_recursive(self):
120
123
        backing_transport = self.server.backing_transport.clone(
121
124
            self._safe_relpath('.'))