From ea2d8137353734d35819f86c31a30876e6f75a2a Mon Sep 17 00:00:00 2001 From: Florian Best Date: Thu, 29 Oct 2015 18:03:55 +0100 Subject: [PATCH] fix reraising of exception (Issue #259) --- src/saml2/entity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/saml2/entity.py b/src/saml2/entity.py index 4d0c548..ca58191 100644 --- a/src/saml2/entity.py +++ b/src/saml2/entity.py @@ -1062,7 +1062,7 @@ class Entity(HTTPBase): except Exception as err: if "not well-formed" in "%s" % err: logger.error("Not well-formed XML") - raise + raise logger.debug("XMLSTR: %s", xmlstr)