summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortermie <github@anarkystic.com>2012-01-24 15:55:44 -0800
committertermie <github@anarkystic.com>2012-01-24 15:55:44 -0800
commit51a2c185ff41b373def1f6c7f7635f652c0d1dff (patch)
tree9a0bcb5f765861e1ea235481cb1070e488e678a2
parent4899210334a030c541e13aa994b25b3996bb3cc9 (diff)
downloadkeystone-51a2c185ff41b373def1f6c7f7635f652c0d1dff.tar.gz
keystone-51a2c185ff41b373def1f6c7f7635f652c0d1dff.tar.xz
keystone-51a2c185ff41b373def1f6c7f7635f652c0d1dff.zip
fix middleware
-rwxr-xr-xkeystone/middleware/auth_token.py2
-rwxr-xr-xkeystone/middleware/swift_auth.py2
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