Comment 3 for bug 598646

Revision history for this message
Andrew Bennetts (spiv) wrote :

Possibly we need to extend the FTP error translation again. At a glance changing our FtpTransport like this might work:

- elif ('file exists' in s):
+ elif ('file exists' in s.lower()):
             raise errors.FileExists(path, extra=extra)

Do you know which software the FTP server is running?