projects
/
invirt/packages/python-routefs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
aec8bfa
)
Export DictFS in the routefs module
author
Evan Broder
<broder@mit.edu>
Tue, 12 Aug 2008 06:09:21 +0000
(23:09 -0700)
committer
Evan Broder
<broder@mit.edu>
Tue, 12 Aug 2008 06:09:21 +0000
(23:09 -0700)
routefs/__init__.py
patch
|
blob
|
history
diff --git
a/routefs/__init__.py
b/routefs/__init__.py
index
88b4f5c
..
871774e
100644
(file)
--- a/
routefs/__init__.py
+++ b/
routefs/__init__.py
@@
-15,6
+15,7
@@
import fuse
import routes
import errno
import stat
import routes
import errno
import stat
+from dictfs import DictFS
fuse.fuse_python_api = (0, 2)
fuse.fuse_python_api = (0, 2)
@@
-171,3
+172,5
@@
def main(cls):
dash_s_do='setsingle')
server.parse(errex=1)
server.main()
dash_s_do='setsingle')
server.parse(errex=1)
server.main()
+
+__all__ = ['RouteFS', 'DictFS', 'Symlink', 'Directory', 'main']