Index: /trunk/source/attach/attach =================================================================== --- /trunk/source/attach/attach (revision 53) +++ /trunk/source/attach/attach (revision 154) @@ -39,7 +39,7 @@ print_usage = True else: - filsys = hesiod.FilsysLookup(args[0]) + filsys = hesiod.FilsysLookup(args[0]).filsys if filsys: - os.symlink(filsys.getFilsys()[0]['location'], a) + os.symlink(filsys[0]['location'], a) sys.exit(0) else: @@ -60,6 +60,6 @@ exit_code = 2 if noise_level == 'verbose': - filsys = hesiod.FilsysLookup(args[0]) - print 'attach: %s attached to /mit/%s for filesystem %s' % (filsys.getFilsys()[0]['location'], arg, arg) + filsys = hesiod.FilsysLookup(args[0]).filsys + print 'attach: %s attached to /mit/%s for filesystem %s' % (filsys[0]['location'], arg, arg) elif noise_level == 'path': print '/mit/%s' % arg