Fixes the HTTPConflict import.

AccountController.PUT references HTTPConflict but doesn't import it. Fixed the import
and verified with setup.py test and pep8

Change-Id: I13b3fa57a72f0112bc6af012e438634fa7d893c1
This commit is contained in:
Dragos Manolescu 2011-11-03 22:17:16 -07:00
parent c0f8a60946
commit 52ec042976

View File

@ -24,7 +24,8 @@ from xml.sax import saxutils
from webob import Request, Response
from webob.exc import HTTPAccepted, HTTPBadRequest, \
HTTPCreated, HTTPForbidden, HTTPInternalServerError, \
HTTPMethodNotAllowed, HTTPNoContent, HTTPNotFound, HTTPPreconditionFailed
HTTPMethodNotAllowed, HTTPNoContent, HTTPNotFound, \
HTTPPreconditionFailed, HTTPConflict
import simplejson
from swift.common.db import AccountBroker