1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-11-09 19:52:16 +00:00

Merge pull request #119 from pR0Ps/bugfix/type-error

Ensure that Exceptions are stringified before being returned
This commit is contained in:
Alban 2018-10-08 18:38:20 +02:00 committed by GitHub
commit 9ab6af1ae6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,7 @@ from .exceptions import GenericError, MissingParameter, NotFound, ServerError
@api.errorhandler(ValueError)
def value_error(e):
rollback()
return GenericError(e)
return GenericError("{0.__class__.__name__}: {0}".format(e))
@api.errorhandler(BadRequestKeyError)
def key_error(e):
@ -33,7 +33,7 @@ def not_found(e):
@api.errorhandler(500)
def generic_error(e): # pragma: nocover
rollback()
return ServerError(e)
return ServerError("{0.__class__.__name__}: {0}".format(e))
#@api.errorhandler(404)
@api.route('/<path:invalid>', methods = [ 'GET', 'POST' ]) # blueprint 404 workaround