We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81bfd5f commit 479035fCopy full SHA for 479035f
SoftLayer/testing/xmlrpc.py
@@ -66,7 +66,7 @@ def do_POST(self):
66
except UnicodeDecodeError:
67
self.wfile.write(response_body)
68
69
- except NotImplementedError as ex:
+ except (NotImplementedError, NameError) as ex:
70
self.send_response(200)
71
self.end_headers()
72
response = xmlrpc.client.Fault(404, str(ex))
0 commit comments