Fix PyHesiodFS to use auto-conversion convention
authorEvan Broder <broder@mit.edu>
Tue, 12 Aug 2008 07:34:17 +0000 (00:34 -0700)
committerEvan Broder <broder@mit.edu>
Tue, 12 Aug 2008 07:34:17 +0000 (00:34 -0700)
routefs/examples/pyhesiodfs.py

index 0a5aa3e..40ebcb2 100755 (executable)
@@ -30,16 +30,16 @@ class PyHesiodFS(routefs.RouteFS):
             return
     
     def getList(self, **kwargs):
-        return routefs.Directory(self.cache.keys() + ['README.txt'])
+        return self.cache.keys() + ['README.txt']
     
     def getReadme(self, **kwargs):
-        return routefs.File("""
+        return """
 This is the pyHesiodFS FUSE automounter. To access a Hesiod filsys,
 just access /mit/name.
 
 If you're using the Finder, try pressing Cmd+Shift+G and then entering
 /mit/name
-""")
+"""
 
 if __name__ == '__main__':
     routefs.main(PyHesiodFS)