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?
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): FileExists( path, extra=extra)
+ elif ('file exists' in s.lower()):
raise errors.
Do you know which software the FTP server is running?