Ditch unused import and variable

Removes a couple of unused things in fixed_ips API extension

Change-Id: I2c4530339be11ea45b58437ce20a9b065f9b24c7
This commit is contained in:
Chris Behrens 2012-11-15 21:56:23 +00:00
parent 90dffc3a9c
commit fa26d7fcc6
1 changed files with 1 additions and 3 deletions

View File

@ -15,11 +15,9 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
import urllib
import webob.exc import webob.exc
from nova.api.openstack import extensions from nova.api.openstack import extensions
from nova.api.openstack import wsgi
from nova import db from nova import db
from nova import exception from nova import exception
from nova.openstack.common import log as logging from nova.openstack.common import log as logging
@ -72,7 +70,7 @@ class FixedIPController(object):
fixed_ip = db.fixed_ip_get_by_address(context, address) fixed_ip = db.fixed_ip_get_by_address(context, address)
db.fixed_ip_update(context, fixed_ip['address'], db.fixed_ip_update(context, fixed_ip['address'],
{'reserved': reserved}) {'reserved': reserved})
except exception.FixedIpNotFoundForAddress as ex: except exception.FixedIpNotFoundForAddress:
msg = _("Fixed IP %s not found") % address msg = _("Fixed IP %s not found") % address
raise webob.exc.HTTPNotFound(explanation=msg) raise webob.exc.HTTPNotFound(explanation=msg)