PEP8 fixes.

Change-Id: I3c33c03547f97ca7afbb47c3bddfdeabf152afe2
This commit is contained in:
Chmouel Boudjnah 2012-01-20 15:07:03 -06:00
parent 09d392073c
commit 16a5faaaba

View File

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