summaryrefslogtreecommitdiff
path: root/fs/multifs.py
diff options
context:
space:
mode:
authorwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2008-09-19 14:46:30 +0000
committerwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2008-09-19 14:46:30 +0000
commit42856dfb1823bf6d79d03cf72d53b8a2d86fc1b7 (patch)
tree60ea95b2a55f8ab3865b815ee503285ed9156a3b /fs/multifs.py
parent1fe2212ccb9d5c85260cf5ffca3d7d6601b2adbc (diff)
downloadpyfilesystem-git-42856dfb1823bf6d79d03cf72d53b8a2d86fc1b7.tar.gz
Renamed fs.py to base.py after all. Added copydir and movedir functions to utils
Diffstat (limited to 'fs/multifs.py')
-rw-r--r--fs/multifs.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/multifs.py b/fs/multifs.py
index 3c950e3..d41580a 100644
--- a/fs/multifs.py
+++ b/fs/multifs.py
@@ -1,6 +1,7 @@
#!/usr/in/env python
-from fs import FS, FSError
+from base import FS, FSError
+from helpers import *
class MultiFS(FS):