Rev 3528: Test passing for python2.5 and 2.6. in file:///net/bigmamac/Volumes/home/vila/src/bzr/experimental/more-ftp/
Vincent Ladeuil
v.ladeuil+lp at free.fr
Wed Mar 18 16:29:02 GMT 2009
At file:///net/bigmamac/Volumes/home/vila/src/bzr/experimental/more-ftp/
------------------------------------------------------------
revno: 3528
revision-id: v.ladeuil+lp at free.fr-20090318162901-5u660idisu4txvqu
parent: v.ladeuil+lp at free.fr-20090318105733-q0i1ou3cb9u766s4
committer: Vincent Ladeuil <v.ladeuil+lp at free.fr>
branch nick: pyftpdlib
timestamp: Wed 2009-03-18 17:29:01 +0100
message:
Test passing for python2.5 and 2.6.
* bzrlib/tests/ftp_server/pyftpdlib_based.py:
(BzrConformingFS.chmod): Wrongly deleted earlier, this is needed
to implement SITE CHMOD.
-------------- next part --------------
=== modified file 'bzrlib/tests/ftp_server/pyftpdlib_based.py'
--- a/bzrlib/tests/ftp_server/pyftpdlib_based.py 2009-03-18 10:56:52 +0000
+++ b/bzrlib/tests/ftp_server/pyftpdlib_based.py 2009-03-18 16:29:01 +0000
@@ -45,6 +45,9 @@
class BzrConformingFS(ftpserver.AbstractedFS):
+ def chmod(self, path, mode):
+ return os.chmod(path, mode)
+
def listdir(self, path):
"""List the content of a directory."""
# FIXME: need tests with unicode paths
More information about the bazaar-commits
mailing list