From 84dc76ae031c95272512d37269e8a98f629487a4 Mon Sep 17 00:00:00 2001 From: Evan Broder Date: Mon, 11 Aug 2008 23:09:21 -0700 Subject: [PATCH] Export DictFS in the routefs module --- routefs/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/routefs/__init__.py b/routefs/__init__.py index 88b4f5c..871774e 100644 --- a/routefs/__init__.py +++ b/routefs/__init__.py @@ -15,6 +15,7 @@ import fuse import routes import errno import stat +from dictfs import DictFS fuse.fuse_python_api = (0, 2) @@ -171,3 +172,5 @@ def main(cls): dash_s_do='setsingle') server.parse(errex=1) server.main() + +__all__ = ['RouteFS', 'DictFS', 'Symlink', 'Directory', 'main'] -- 1.7.9.5