>         method = getattr(auths[0], method_name, None)
Should be
        fn = getattr(auths[0], method_name, None)

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to