From 5ae030997a7c6ad91b1ca0ec2ba53b17a21d649f Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Mon, 15 Feb 2021 09:25:22 +0100 Subject: [PATCH] providers/saml: fix missing import --- authentik/providers/saml/processors/assertion.py | 1 + 1 file changed, 1 insertion(+) diff --git a/authentik/providers/saml/processors/assertion.py b/authentik/providers/saml/processors/assertion.py index dd47003e0..428472519 100644 --- a/authentik/providers/saml/processors/assertion.py +++ b/authentik/providers/saml/processors/assertion.py @@ -3,6 +3,7 @@ from hashlib import sha256 from types import GeneratorType import xmlsec +from django.conf import settings from django.http import HttpRequest from lxml import etree # nosec from lxml.etree import Element, SubElement # nosec