Index: /trunk/pyHesiodFS/pyHesiodFS.py =================================================================== --- /trunk/pyHesiodFS/pyHesiodFS.py (revision 38) +++ /trunk/pyHesiodFS/pyHesiodFS.py (revision 41) @@ -23,5 +23,9 @@ hello_path = '/README.txt' -hello_str = 'This is the pyhesiodfs FUSE autmounter. To access a Hesiod filsys, just access %s/name.\n' +hello_str = """This is the pyhesiodfs FUSE autmounter. To access a Hesiod filsys, just access +%(mountpoint)s/name. + +If you're using the Finder, try pressing Cmd+Shift+G and then entering +%(mountpoint)s/name""" class MyStat(fuse.Stat): @@ -46,5 +50,5 @@ self.fuse_args.add("noapplexattr", True) self.fuse_args.add("fsname", "pyHesiodFS") - self.fuse_args.add("volname", "pyHesiodFS automounter") + self.fuse_args.add("volname", "MIT") self.mounts = {} @@ -120,6 +124,7 @@ def main(): + global hello_str usage=""" -Userspace hello example +pyHesiodFS """ + Fuse.fusage @@ -129,4 +134,5 @@ server.parse(errex=1) + hello_str = hello_str % {'mountpoint': server.parse(errex=1).mountpoint} server.main()