~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/ftp.py

  • Committer: Andrew Bennetts
  • Date: 2008-04-07 08:20:13 UTC
  • mfrom: (3340 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3344.
  • Revision ID: andrew.bennetts@canonical.com-20080407082013-ca1n1tqqon7ugxiy
Merge from bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
178
178
            or 'no such dir' in s
179
179
            or 'could not create file' in s # vsftpd
180
180
            or 'file doesn\'t exist' in s
 
181
            or 'rnfr command failed.' in s # vsftpd RNFR reply if file not found
181
182
            or 'file/directory not found' in s # filezilla server
182
183
            ):
183
184
            raise errors.NoSuchFile(path, extra=extra)