~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/sftp.py

  • Committer: Martin Pool
  • Date: 2011-07-04 21:10:37 UTC
  • mto: (6034.1.1 filter-tree)
  • mto: This revision was merged to the branch mainline in revision 6035.
  • Revision ID: mbp@canonical.com-20110704211037-ro3417imj3oqnqxp
Support exporting tarballs from ContentFilterTree

Show diffs side-by-side

added added

removed removed

Lines of Context:
337
337
    # up the request itself, rather than us having to worry about it
338
338
    _max_request_size = 32768
339
339
 
 
340
    def __init__(self, base, _from_transport=None):
 
341
        super(SFTPTransport, self).__init__(base,
 
342
                                            _from_transport=_from_transport)
 
343
 
340
344
    def _remote_path(self, relpath):
341
345
        """Return the path to be passed along the sftp protocol for relpath.
342
346