HTTPException import

This commit is contained in:
Joseph Schorr 2014-01-24 15:10:51 -05:00
parent efcbe4421d
commit fd4ac04b5a

View file

@ -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__)