summaryrefslogtreecommitdiff
path: root/fs/rpcfs.py
diff options
context:
space:
mode:
authorwillmcgugan@gmail.com <willmcgugan@gmail.com@67cdc799-7952-0410-af00-57a81ceafa0f>2014-03-13 18:47:17 +0000
committerwillmcgugan@gmail.com <willmcgugan@gmail.com@67cdc799-7952-0410-af00-57a81ceafa0f>2014-03-13 18:47:17 +0000
commit221c3725f109ed5a6126c1f406cda68f55d95894 (patch)
tree29b872dda5258bb8a4b73a0df9bfe568b495c6d8 /fs/rpcfs.py
parent5142e4da3e4a838b256c5c582a25ad0fdbb9bf49 (diff)
downloadpyfilesystem-221c3725f109ed5a6126c1f406cda68f55d95894.tar.gz
Test fixes and preparations for 0.5.0 release
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@887 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/rpcfs.py')
-rw-r--r--fs/rpcfs.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/rpcfs.py b/fs/rpcfs.py
index eecdbf0..00ba86a 100644
--- a/fs/rpcfs.py
+++ b/fs/rpcfs.py
@@ -305,7 +305,8 @@ class RPCFS(FS):
@synchronize
def getinfo(self, path):
path = self.encode_path(path)
- return self.proxy.getinfo(path)
+ info = self.proxy.getinfo(path)
+ return info
@synchronize
def desc(self, path):