aboutsummaryrefslogtreecommitdiffstats
path: root/nsfs.py
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2011-04-29 16:00:17 -0400
committerbnewbold <bnewbold@robocracy.org>2011-04-29 16:00:17 -0400
commitfc80cc72b0e1900ea0e0dc540d6a52551e9b19c1 (patch)
tree3bada2c98e2e93ed09b861293ab78b4e035219fb /nsfs.py
parentfba9ce54b4cfbcc8b2847ea1cc22144ba79957b0 (diff)
downloadpynsfs-fc80cc72b0e1900ea0e0dc540d6a52551e9b19c1.tar.gz
pynsfs-fc80cc72b0e1900ea0e0dc540d6a52551e9b19c1.zip
minor repo cleanupHEADmaster
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):