OK, I found my problem. It's related to this part of my app.cfg: # SqlObjectIdentityProvider # Configuration options for the default IdentityProvider # -------------------------
# The classes you wish to use for your Identity model. Leave these commented out # to use the default classes for SqlObjectIdentityProvider. Or set them to the # classes in your model. NOTE: These aren't TG_* because the TG prefix is # reserved for classes created by TurboGears. identity.soprovider.model.user="blog.model.User" identity.soprovider.model.group="blog.model.Group" identity.soprovider.model.permission="blog.model.Permission" I had blindly uncommented the above 3 lines, which is wrong, because then it was looking for a 'User' class in my model, and not the 'TG_User' class created by 'tg-admin sql create'. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears Trunk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears-trunk -~----------~----~----~----~------~----~------~--~---
