Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix use of 'e' before assignement #80

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions walib/istsos/services/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'])
Expand Down Expand Up @@ -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,
Expand All @@ -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(
Expand Down