~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/sftp.py

  • Committer: John Arbash Meinel
  • Date: 2006-09-05 19:34:34 UTC
  • mto: (1946.2.8 reduce-knit-churn)
  • mto: This revision was merged to the branch mainline in revision 1988.
  • Revision ID: john@arbash-meinel.com-20060905193434-2ae27ba5c50bae61
Lots of deprecation warnings, but no errors

Show diffs side-by-side

added added

removed removed

Lines of Context:
366
366
            # on to the next
367
367
            cur_coalesced = cur_coalesced_stack.next()
368
368
 
369
 
    def put(self, relpath, f, mode=None):
 
369
    def put_file(self, relpath, f, mode=None):
370
370
        """
371
 
        Copy the file-like or string object into the location.
 
371
        Copy the file-like object into the location.
372
372
 
373
373
        :param relpath: Location to put the contents, relative to base.
374
 
        :param f:       File-like or string object.
 
374
        :param f:       File-like object.
375
375
        :param mode: The final mode for the file
376
376
        """
377
377
        final_path = self._remote_path(relpath)