From 16a5faaaba1a6dd7e4fe46d1ddd10ad497cd6014 Mon Sep 17 00:00:00 2001 From: Chmouel Boudjnah Date: Fri, 20 Jan 2012 15:07:03 -0600 Subject: [PATCH] PEP8 fixes. Change-Id: I3c33c03547f97ca7afbb47c3bddfdeabf152afe2 --- swift/common/middleware/recon.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/swift/common/middleware/recon.py b/swift/common/middleware/recon.py index 6ee276d654..86d28b96a7 100644 --- a/swift/common/middleware/recon.py +++ b/swift/common/middleware/recon.py @@ -13,8 +13,11 @@ # See the License for the specific language governing permissions and # limitations under the License. +import errno +import os + from webob import Request, Response -from swift.common.utils import split_path, cache_from_env, get_logger +from swift.common.utils import split_path, get_logger from swift.common.constraints import check_mount from resource import getpagesize from hashlib import md5 @@ -22,7 +25,6 @@ try: import simplejson as json except ImportError: import json -import os class ReconMiddleware(object):