~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/ftp/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2010-12-20 11:57:14 UTC
  • mto: This revision was merged to the branch mainline in revision 5577.
  • Revision ID: jelmer@samba.org-20101220115714-2ru3hfappjweeg7q
Don't use no-plugins.

Show diffs side-by-side

added added

removed removed

Lines of Context:
203
203
            # Microsoft FTP-Service RNFR reply if file not found
204
204
            or (s.startswith('550 ') and 'unable to rename to' in extra)
205
205
            # if containing directory doesn't exist, suggested by
206
 
            # <https://bugs.edge.launchpad.net/bzr/+bug/224373>
 
206
            # <https://bugs.launchpad.net/bzr/+bug/224373>
207
207
            or (s.startswith('550 ') and "can't find folder" in s)
208
208
            ):
209
209
            raise errors.NoSuchFile(path, extra=extra)