From fd4ac04b5a4fe74a7561e4b6ad0ece79aefaa72e Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Fri, 24 Jan 2014 15:10:51 -0500 Subject: [PATCH] HTTPException import --- util/http.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/util/http.py b/util/http.py index b607fc01b..bb43bd7f8 100644 --- a/util/http.py +++ b/util/http.py @@ -1,7 +1,8 @@ import logging -from flask import request, abort as flask_abort +from flask import request, abort as flask_abort, make_response from auth.auth import process_auth, extract_namespace_repo_from_session, get_authenticated_user, get_validated_token +from werkzeug.exceptions import HTTPException logger = logging.getLogger(__name__)