/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/transport/ftp.py

Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
180
180
            or 'file doesn\'t exist' in s
181
181
            or 'rnfr command failed.' in s # vsftpd RNFR reply if file not found
182
182
            or 'file/directory not found' in s # filezilla server
 
183
            # Microsoft FTP-Service RNFR reply if file not found
 
184
            or (s.startswith('550 ') and 'unable to rename to' in extra)
183
185
            ):
184
186
            raise errors.NoSuchFile(path, extra=extra)
185
187
        if ('file exists' in s):