Skip to content

Commit 1e12f42

Browse files
committed
Remove unneeded variable
Signed-off-by: Ivan Kanakarakis <[email protected]>
1 parent ab7705a commit 1e12f42

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/saml2/entity.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1136,8 +1136,7 @@ def _parse_response(self, xmlstr, response_cls, service, binding,
11361136
return None
11371137

11381138
try:
1139-
origxml = xmlstr
1140-
response = response.loads(xmlstr, False, origxml=origxml)
1139+
response = response.loads(xmlstr, False, origxml=xmlstr)
11411140
except SigverError as err:
11421141
logger.error("Signature Error: %s", err)
11431142
raise

0 commit comments

Comments
 (0)