2 Jun
2004
2 Jun
'04
1:20 p.m.
From: "Small Business Services" <toolkit@magma.ca>
I have installed VerboseSecurity and when I try to access my data folder (the one with 'View' permission set to 'Authenticated') I get the following zope error:
Error Type: TypeError Error Value: issubclass() arg 2 must be a class
Running VerboseSecurity under zope 2.6.1, python 2.1.3 requires the following change in PermissionRolePatch.py: Change: if issubclass(t, StringType) or issubclass(t, UnicodeType): To: if isinstance(t, StringType) or isinstance(t, UnicodeType): I don't know if this is a good/bad fix but at least VerboseSecurity works.