diff options
author | 2019-01-02 02:53:46 +0100 | |
---|---|---|
committer | 2019-01-02 02:53:46 +0100 | |
commit | 804946f685f94b375c03b3620033e431094136ad (patch) | |
tree | 0667fc3676b3753e92570a27f7d024894934167f | |
parent | Use ffmpeg and support m4a (diff) | |
download | zmusic-ng-804946f685f94b375c03b3620033e431094136ad.tar.xz zmusic-ng-804946f685f94b375c03b3620033e431094136ad.zip |
Work with recent flask
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | backend/zmusic/endpoints/error.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -245,7 +245,7 @@ The author does not condone or promote using this software for redistributing co ## License -Copyright (C) 2013 Jason A. Donenfeld. All Rights Reserved. +Copyright (C) 2013-2019 Jason A. Donenfeld. All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/backend/zmusic/endpoints/error.py b/backend/zmusic/endpoints/error.py index 74e7cd2..c356c3d 100644 --- a/backend/zmusic/endpoints/error.py +++ b/backend/zmusic/endpoints/error.py @@ -10,4 +10,4 @@ def json_error(ex): return response for code in default_exceptions.iterkeys(): - app.error_handler_spec[None][code] = json_error + app.register_error_handler(code, json_error) |