diff options
| author | bnewbold <bnewbold@robocracy.org> | 2011-04-29 16:00:17 -0400 | 
|---|---|---|
| committer | bnewbold <bnewbold@robocracy.org> | 2011-04-29 16:00:17 -0400 | 
| commit | fc80cc72b0e1900ea0e0dc540d6a52551e9b19c1 (patch) | |
| tree | 3bada2c98e2e93ed09b861293ab78b4e035219fb /nsfs.py | |
| parent | fba9ce54b4cfbcc8b2847ea1cc22144ba79957b0 (diff) | |
| download | pynsfs-fc80cc72b0e1900ea0e0dc540d6a52551e9b19c1.tar.gz pynsfs-fc80cc72b0e1900ea0e0dc540d6a52551e9b19c1.zip  | |
Diffstat (limited to 'nsfs.py')
| -rw-r--r-- | nsfs.py | 4 | 
1 files changed, 2 insertions, 2 deletions
@@ -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):  | 
