From f2e13ce53aa1209779400a61c7779b87b280f7f8 Mon Sep 17 00:00:00 2001 From: Evan Broder Date: Tue, 12 Aug 2008 00:34:17 -0700 Subject: [PATCH] Fix PyHesiodFS to use auto-conversion convention --- routefs/examples/pyhesiodfs.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/routefs/examples/pyhesiodfs.py b/routefs/examples/pyhesiodfs.py index 0a5aa3e..40ebcb2 100755 --- a/routefs/examples/pyhesiodfs.py +++ b/routefs/examples/pyhesiodfs.py @@ -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) -- 1.7.9.5