Skip to content

Commit d2ebc6b

Browse files
author
Roland Hedberg
committed
Merge pull request #187 from biancini/master
Fixed problem with metadata extensions
2 parents 0f34abb + a51eee7 commit d2ebc6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/saml2/s_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ def rec_factory(cls, **kwargs):
467467
except Exception:
468468
continue
469469
else:
470-
setattr(_inst, key, val)
470+
setattr(_inst, _inst.c_attributes[key][0], val)
471471
elif key in _inst.c_child_order:
472472
for tag, _cls in _inst.c_children.values():
473473
if tag == key:

0 commit comments

Comments
 (0)