aboutsummaryrefslogtreecommitdiffstats
path: root/nsfs.py
diff options
context:
space:
mode:
Diffstat (limited to 'nsfs.py')
-rw-r--r--nsfs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nsfs.py b/nsfs.py
index d306097..1189472 100644
--- a/nsfs.py
+++ b/nsfs.py
@@ -17,7 +17,7 @@ import errno # for error number codes (ENOENT, etc)
# pull in some spaghetti to make this stuff work without fuse-py being installed
try:
- import _find_fuse_parts
+ import find_fuse_parts
except ImportError:
pass
import fuse
@@ -59,7 +59,7 @@ class DefaultStatVfs(fuse.StatVfs):
self.n_unamed_fields = 0
class NamespaceFS(Fuse):
- """Generates a file system from a python namespace, for kicks.
+ """Generates a virtual file system from a python namespace.
"""
def __init__(self, *args, **kw):