From 6fe991649a80fd501458edacedce64339790f768 Mon Sep 17 00:00:00 2001 From: Serghei Mihai Date: Wed, 20 Mar 2019 15:22:55 +0100 Subject: [PATCH] misc: fix authenticator wrong path (#31597) --- src/authentic2_auth_kerberos/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/authentic2_auth_kerberos/__init__.py b/src/authentic2_auth_kerberos/__init__.py index ec6d154..fee6255 100644 --- a/src/authentic2_auth_kerberos/__init__.py +++ b/src/authentic2_auth_kerberos/__init__.py @@ -14,4 +14,4 @@ class Plugin(object): 'authentic2_auth_kerberos.backends.A2KerberosBackend'] def get_authenticators(self): - return ['authentic2_auth_fedict.authenticators.KerberosAuthenticator'] + return ['authentic2_auth_kerberos.authenticators.KerberosAuthenticator']