I am following the tutorial on identity management here: http://docs.turbogears.org/1.0/IdentityManagment
The tut says I can use SA, which I am doing, and gives instructions for creating the users using the tg shell. I do: u = User(user_name='jdoe', email_address='[EMAIL PROTECTED]', display_name='Jane Doe', password='xxx') g = Group(group_name='admin', display_name='Administrators') g.addUser(u) On the last command I get: AttributeError: 'Group' object has no attribute 'addUser' And am then stuck. Any tips? Iain --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" 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?hl=en -~----------~----~----~----~------~----~------~--~---

