Hi,

zope.app.security.principallogging.PrincipalLogging looks like:

class PrincipalLogging(object):

    implements(ILoggingInfo)

    def __init__(self, principal):
        self.principal = principal

    def getLogMessage(self):
        return str(self.principal.id)


It requires that self.principal.id cannot be a UNICODE string (cannot
contain non-ascii characters).

Is this intentional???

With regards,
-Shailesh
_______________________________________________
Zope3-users mailing list
Zope3-users@zope.org
http://mail.zope.org/mailman/listinfo/zope3-users

Reply via email to