From 51a2c185ff41b373def1f6c7f7635f652c0d1dff Mon Sep 17 00:00:00 2001 From: termie Date: Tue, 24 Jan 2012 15:55:44 -0800 Subject: fix middleware --- keystone/middleware/auth_token.py | 2 +- keystone/middleware/swift_auth.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/keystone/middleware/auth_token.py b/keystone/middleware/auth_token.py index c4e28589..d806dd01 100755 --- a/keystone/middleware/auth_token.py +++ b/keystone/middleware/auth_token.py @@ -76,7 +76,7 @@ import webob import webob.exc from webob.exc import HTTPUnauthorized -from keystone.bufferedhttp import http_connect_raw as http_connect +from keystone.common.bufferedhttp import http_connect_raw as http_connect PROTOCOL_NAME = "Token Authentication" diff --git a/keystone/middleware/swift_auth.py b/keystone/middleware/swift_auth.py index 75120c34..35bab6a3 100755 --- a/keystone/middleware/swift_auth.py +++ b/keystone/middleware/swift_auth.py @@ -43,7 +43,7 @@ import json from urlparse import urlparse from webob.exc import HTTPUnauthorized, HTTPNotFound, HTTPExpectationFailed -from keystone.bufferedhttp import http_connect_raw as http_connect +from keystone.common.bufferedhttp import http_connect_raw as http_connect from swift.common.middleware.acl import clean_acl, parse_acl, referrer_allowed from swift.common.utils import get_logger, split_path -- cgit