~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/chroot.py

Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
        self._ensure_relpath_is_child(relpath)
78
78
        return TransportDecorator.get_bytes(self, relpath)
79
79
 
80
 
    def get(self, relpath):
81
 
        self._ensure_relpath_is_child(relpath)
82
 
        return TransportDecorator.get(self, relpath)
83
 
 
84
80
    def has(self, relpath):
85
81
        self._ensure_relpath_is_child(relpath)
86
82
        return TransportDecorator.has(self, relpath)