~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Vincent Ladeuil
  • Date: 2010-12-02 10:43:55 UTC
  • mto: (5554.1.2 trunk)
  • mto: This revision was merged to the branch mainline in revision 5555.
  • Revision ID: v.ladeuil+lp@free.fr-20101202104355-p9tcfdia34f7ar13
Fix some new edge references.

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)