From dbc42f14afc333b3815621d195f1a40f6a892ddc Mon Sep 17 00:00:00 2001 From: TheoLechemia Date: Thu, 11 Aug 2022 11:33:00 +0200 Subject: [PATCH] Fix use of 'e' before assignement The returned response is more readable --- walib/istsos/services/services.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/walib/istsos/services/services.py b/walib/istsos/services/services.py index f39e1261..a20741a0 100755 --- a/walib/istsos/services/services.py +++ b/walib/istsos/services/services.py @@ -743,7 +743,6 @@ def executePost(self): if "ForceInsert" in self.json: ForceInsert = et.SubElement(root, "{%s}ForceInsert" % ns['sos']) ForceInsert.text = self.json["ForceInsert"] - Observation = et.SubElement(root, "{%s}Observation" % ns['om']) procedure = et.SubElement(Observation, "{%s}procedure" % ns['om']) @@ -825,7 +824,6 @@ def executePost(self): headers = {"Content-type": "text/xml"} if 'HTTP_AUTHORIZATION' in self.waEnviron: headers['Authorization'] = self.waEnviron['HTTP_AUTHORIZATION'] - response = requests.post( self.serviceconf.serviceurl["url"], data=iostring, @@ -840,8 +838,8 @@ def executePost(self): else: self.setException( - "Insert observations failed - Communication: %s %s - " - "Response: %s" % (response.status_code, e, response.text)) + "Insert observations failed - Communication: %s - " + "Response: %s" % (response.status_code, response.text)) except Exception as e: self.setException(