Skip to content

Commit

Permalink
Bug fix kimchi-project#207: Fix LDAPUser class initialization
Browse files Browse the repository at this point in the history
It was wrongly calling PAMUser instance on LDAPUser class
initialization.

Signed-off-by: Aline Manera <[email protected]>
  • Loading branch information
alinefm committed Mar 15, 2017
1 parent af4b9f7 commit a39da06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wok/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ class LDAPUser(User):
auth_type = "ldap"

def __init__(self, username):
super(PAMUser, self).__init__(username)
super(LDAPUser, self).__init__(username)

@staticmethod
def authenticate(username, password):
Expand Down

0 comments on commit a39da06

Please sign in to comment.