~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/ftp.py

  • Committer: John Arbash Meinel
  • Date: 2006-09-05 21:20:24 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-20060905212024-39f58d0f5acd74a4
Deprecate 'Transport.append' in favor of Transport.append_file or Transport.append_bytes

Show diffs side-by-side

added added

removed removed

Lines of Context:
365
365
        except ftplib.error_perm, e:
366
366
            self._translate_perm_error(e, abspath, unknown_exc=errors.PathError)
367
367
 
368
 
    def append(self, relpath, f, mode=None):
 
368
    def append_file(self, relpath, f, mode=None):
369
369
        """Append the text in the file-like object into the final
370
370
        location.
371
371
        """