Merge "Stop using deprecated 'message' attribute in Exception"

This commit is contained in:
Jenkins 2017-08-07 04:23:16 +00:00 committed by Gerrit Code Review
commit a9b9a83e73
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ class Rest(flask.Blueprint):
return func(**kwargs)
except ex.DistilException as e:
LOG.error('Error during API call: %s' % str(e))
return render_error_message(e.code, e.message)
return render_error_message(e.code, str(e))
except Exception as e:
return render_error_message(500, str(e))