[Zope] Strange String comparison problem (python script)

Mark McEahern marklists@mceahern.com
Thu, 29 Aug 2002 12:53:50 -0500


> if user == context.getId():

Have you tried:

  if str(user) == str(context.getId()):

I'm just guessing.

// m
-