~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/ftp.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-10-08 02:26:21 UTC
  • mfrom: (2885.3.1 bzr.dev)
  • Revision ID: pqm@pqm.ubuntu.com-20071008022621-m0rzk7yfrfoszd38
Recognize errors from Filezilla ftp server (Gary van der Merwe)

Show diffs side-by-side

added added

removed removed

Lines of Context:
167
167
            or 'no such dir' in s
168
168
            or 'could not create file' in s # vsftpd
169
169
            or 'file doesn\'t exist' in s
 
170
            or 'file/directory not found' in s # filezilla server
170
171
            ):
171
172
            raise errors.NoSuchFile(path, extra=extra)
172
173
        if ('file exists' in s):