Added NoneType exception handling in settings & server modules while returning json response.

This commit is contained in:
Murtuza Zabuawala
2015-11-13 16:59:16 +00:00
committed by Dave Page
parent fe10994fb9
commit 52b86b6fb4
2 changed files with 19 additions and 3 deletions

View File

@@ -238,8 +238,13 @@ class ServerNode(NodeView):
success=0,
errormsg=e.message)
try:
info = traceback.format_exc()
except Exception as e:
info = str(e)
return make_json_response(success=1,
info=traceback.format_exc())
info=info)
def update(self, gid, sid):
"""Update the server settings"""