Since this is python, the source code is included.  You'll find that if
you edit the source.  I think this error is generated because the code
attempts to call a function that does not exist
(DriverHandler.description(self)).  The error tells us that
DriverHanlder.description is a "property" not a callable function.  So,
open your favorite editor, go to line 28 of /usr/lib/python2.5/site-
packages/RestrictedManager/handlers/lrm_driver.py and change:

return DriverHandler.description(self)

to

return DriverHanlder.description

Make sure not to change the indentation.  It matters in python.

Worked for me.  Good luck!

-- 
restricted manager crashes in gutsy tribe 4
https://bugs.launchpad.net/bugs/134097
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to