Skip to content

Commit 4f767b9

Browse files
author
Roland Hedberg
committed
Merge pull request #95 from DataDog/spsso_descriptor
want_assertions_signed and authn_requests_signed are boolean
2 parents 49bb674 + 9f54909 commit 4f767b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/saml2/metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ def do_spsso_descriptor(conf, cert=None):
474474
if val is None:
475475
setattr(spsso, key, DEFAULT[key]) # default ?!
476476
else:
477-
strval = "{0:>s}".format(val)
477+
strval = "{0:>s}".format(str(val))
478478
setattr(spsso, key, strval.lower())
479479
except KeyError:
480480
setattr(spsso, key, DEFAULTS[key])

0 commit comments

Comments
 (0)