summaryrefslogtreecommitdiff
path: root/fs/remote.py
diff options
context:
space:
mode:
Diffstat (limited to 'fs/remote.py')
-rw-r--r--fs/remote.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/remote.py b/fs/remote.py
index 16c9689..c21f8b3 100644
--- a/fs/remote.py
+++ b/fs/remote.py
@@ -231,6 +231,9 @@ class ConnectionManagerFS(WrapFS):
finally:
self._connection_cond.release()
+ def setcontents(self,path,data):
+ self.wrapped_fs.setcontents(path,data)
+
def __getstate__(self):
state = super(ConnectionManagerFS,self).__getstate__()
del state["_connection_cond"]