From fd39e8d22666518a21d3d27d041a94c46864dd8f Mon Sep 17 00:00:00 2001 From: "Matthew X. Economou" Date: Sat, 3 Mar 2018 15:07:07 -0500 Subject: [PATCH] Fix typo in exception name This exception should be the same as all the others. --- src/satosa/micro_services/ldap_attribute_store.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/satosa/micro_services/ldap_attribute_store.py b/src/satosa/micro_services/ldap_attribute_store.py index d419a82..dd34607 100644 --- a/src/satosa/micro_services/ldap_attribute_store.py +++ b/src/satosa/micro_services/ldap_attribute_store.py @@ -268,7 +268,7 @@ def _ldap_connection_factory(self, config): except LDAPException as e: msg = "Caught exception when connecting to LDAP server: {}".format(e) satosa_logging(logger, logging.ERROR, msg, None) - raise AttributeStoreError(msg) + raise LdapAttributeStoreError(msg) satosa_logging(logger, logging.DEBUG, "Successfully connected to LDAP server", None)