summaryrefslogtreecommitdiff
path: root/src/saml2/soap.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/saml2/soap.py')
-rw-r--r--src/saml2/soap.py15
1 files changed, 3 insertions, 12 deletions
diff --git a/src/saml2/soap.py b/src/saml2/soap.py
index 14593afb..b8015a6a 100644
--- a/src/saml2/soap.py
+++ b/src/saml2/soap.py
@@ -6,24 +6,15 @@ Suppport for the client part of the SAML2.0 SOAP binding.
"""
import logging
import re
+from xml.etree import ElementTree as ElementTree
+
+import defusedxml.ElementTree
from saml2 import create_class_from_element_tree
from saml2.samlp import NAMESPACE as SAMLP_NAMESPACE
from saml2.schema import soapenv
-try:
- from xml.etree import ElementTree as ElementTree
-except ImportError:
- try:
- import cElementTree as ElementTree
- except ImportError:
- # noinspection PyUnresolvedReferences
- from elementtree import ElementTree
-
-import defusedxml.ElementTree
-
-
logger = logging.getLogger(__name__)