~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/chroot.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-12-21 18:01:57 UTC
  • mfrom: (2208.1.2 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20061221180157-d1bc7971e9d0e6af
(Vincent Ladeuil) Small cleanups of Transports

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)