~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/ftp.py

  • Committer: Aaron Bentley
  • Date: 2007-03-16 15:21:10 UTC
  • mfrom: (2359 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2389.
  • Revision ID: abentley@panoramicfeedback.com-20070316152110-crvg8yllxe1zt105
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
161
161
        if ('no such file' in s
162
162
            or 'could not open' in s
163
163
            or 'no such dir' in s
 
164
            or 'could not create file' in s # vsftpd
164
165
            ):
165
166
            raise errors.NoSuchFile(path, extra=extra)
166
167
        if ('file exists' in s):