Rev 2339: (Arnaud Fontaine) Compatibility with vsftpd error messages. in http://bzr.arbash-meinel.com/branches/bzr/branches/bzr/jam-integration

John Arbash Meinel john at arbash-meinel.com
Mon Mar 12 15:14:12 GMT 2007


At http://bzr.arbash-meinel.com/branches/bzr/branches/bzr/jam-integration

------------------------------------------------------------
revno: 2339
revision-id: john at arbash-meinel.com-20070312151404-1midj71kyca44q3p
parent: pqm at pqm.ubuntu.com-20070311211206-0fd0176ac1e77ef7
committer: John Arbash Meinel <john at arbash-meinel.com>
branch nick: jam-integration
timestamp: Mon 2007-03-12 09:14:04 -0600
message:
  (Arnaud Fontaine) Compatibility with vsftpd error messages.
modified:
  bzrlib/transport/ftp.py        ftp.py-20051116161804-58dc9506548c2a53
-------------- next part --------------
=== modified file 'bzrlib/transport/ftp.py'
--- a/bzrlib/transport/ftp.py	2006-09-15 01:12:18 +0000
+++ b/bzrlib/transport/ftp.py	2007-03-12 15:14:04 +0000
@@ -1,4 +1,4 @@
-# Copyright (C) 2005 Canonical Ltd
+# Copyright (C) 2005, 2006, 2007 Canonical Ltd
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -161,6 +161,7 @@
         if ('no such file' in s
             or 'could not open' in s
             or 'no such dir' in s
+            or 'could not create file' in s # vsftpd
             ):
             raise errors.NoSuchFile(path, extra=extra)
         if ('file exists' in s):



More information about the bazaar-commits mailing list