Skip to content

Commit

Permalink
Merge pull request #557 from metabrainz/api-exception-fix
Browse files Browse the repository at this point in the history
Fix missing exception import
  • Loading branch information
paramsingh committed Mar 18, 2019
2 parents 95fa0f2 + 78bd385 commit 0a07036
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion listenbrainz/webserver/views/api.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import ujson
from flask import Blueprint, request, jsonify, current_app
from listenbrainz.webserver.errors import APIBadRequest, APIInternalServerError, APIUnauthorized, APINotFound
from listenbrainz.webserver.errors import APIBadRequest, APIInternalServerError, APIUnauthorized, APINotFound, APIServiceUnavailable
from listenbrainz.db.exceptions import DatabaseException
from listenbrainz.webserver.decorators import crossdomain
from listenbrainz.webserver.views.follow import parse_user_list
Expand Down

0 comments on commit 0a07036

Please sign in to comment.