summaryrefslogtreecommitdiff
path: root/fs/multifs.py
diff options
context:
space:
mode:
authorrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2009-06-05 05:23:13 +0000
committerrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2009-06-05 05:23:13 +0000
commite9c7e7684b2cbccf9d4b6c7a0b53fcd32b3c0413 (patch)
tree19bb49ea88f67be381a9b5dbe522d17e23458a32 /fs/multifs.py
parent9a23be35ebaac211da6a67e63a0fc46f142558b3 (diff)
downloadpyfilesystem-e9c7e7684b2cbccf9d4b6c7a0b53fcd32b3c0413.tar.gz
fs.expose.fuse: expose an FS object via FUSE
Uses a ctypes-based FUSE interface. Adapted from Will's fuseserver.py and the fuse.py example code. git-svn-id: http://pyfilesystem.googlecode.com/svn/branches/rfk-ideas@153 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/multifs.py')
-rw-r--r--fs/multifs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/multifs.py b/fs/multifs.py
index 837f667..0e1e357 100644
--- a/fs/multifs.py
+++ b/fs/multifs.py
@@ -205,7 +205,7 @@ class MultiFS(FS):
def rename(self, src, dst):
if not issamedir(src, dst):
- raise ValueError("Destination path must the same directory (user the move method for moving to a different directory)")
+ raise ValueError("Destination path must the same directory (use the move method for moving to a different directory)")
self._lock.acquire()
try:
for fs in self: