From 52e4d12ce32bb9aa4a9366ca3f9f57e191e3edc6 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 1 Sep 2008 20:10:48 -0400 Subject: [PATCH] It's not a _real_ pyhesiodfs if it's not accessible to everyone else. Signed-off-by: Geoffrey Thomas --- routefs/examples/pyhesiodfs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/routefs/examples/pyhesiodfs.py b/routefs/examples/pyhesiodfs.py index 40ebcb2..92986a2 100755 --- a/routefs/examples/pyhesiodfs.py +++ b/routefs/examples/pyhesiodfs.py @@ -7,6 +7,7 @@ from routes import Mapper class PyHesiodFS(routefs.RouteFS): def __init__(self, *args, **kwargs): super(PyHesiodFS, self).__init__(*args, **kwargs) + self.fuse_args.add("allow_other", True) self.cache = {} -- 1.7.9.5