summaryrefslogtreecommitdiff
path: root/src/saml2/algsupport.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/saml2/algsupport.py')
-rw-r--r--src/saml2/algsupport.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/saml2/algsupport.py b/src/saml2/algsupport.py
index a2d32135..f9bc06b8 100644
--- a/src/saml2/algsupport.py
+++ b/src/saml2/algsupport.py
@@ -42,7 +42,7 @@ def get_algorithm_support(xmlsec):
pof.wait()
if not p_err:
- p = p_out.split('\n')
+ p = p_out.splitlines()
algs = [x.strip('"') for x in p[1].split(',')]
digest = []
signing = []