Skip to content

Commit

Permalink
Merge pull request #17 from alamoureux/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
02strich authored Oct 23, 2020
2 parents 416c2e2 + ea1af88 commit af8bf40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_auth_kerberos/backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class KrbBackend(ModelBackend):
Django Authentication backend using Kerberos for password checking.
"""

def authenticate(self, username=None, password=None):
def authenticate(self, request, username=None, password=None, **kwargs):
UserModel = get_user_model()

if not self.check_password(username, password):
Expand Down

0 comments on commit af8bf40

Please sign in to comment.