Skip to content

Commit a1c5eea

Browse files
author
Roland Hedberg
committed
Merge pull request #277 from spaceone/issue259
fix reraising of exception (Issue #259)
2 parents d94e10d + ea2d813 commit a1c5eea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/saml2/entity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1108,7 +1108,7 @@ def _parse_response(self, xmlstr, response_cls, service, binding,
11081108
except Exception as err:
11091109
if "not well-formed" in "%s" % err:
11101110
logger.error("Not well-formed XML")
1111-
raise
1111+
raise
11121112

11131113
logger.debug("XMLSTR: %s", xmlstr)
11141114

0 commit comments

Comments
 (0)