User (entity) c-tor in Authkit's Sqlalchemy driver takes uid as
parameter but uses id inside

      class User(object):
           def __init__(
               self,
               username,
               uid=None,      # This line
               password=None,
               group_uid=None,
           ):
               self.id         = id # This line
               self.username   = username
               self.password   = password
               self.group_uid  = group_uid

Is this something special or just defect?

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" 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/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to