From aa5ace6b7555dd9ed59dd07ea022585f44767f27 Mon Sep 17 00:00:00 2001 From: shihanzhang Date: Mon, 3 Mar 2014 09:11:29 +0800 Subject: [PATCH] Remove unused 'as e' in exception blocks Change-Id: I0bd26e1657a4e0ec40405d03d43aee9e10a13636 Closes-bug: #1287031 --- neutron/api/v2/resource.py | 2 +- neutron/plugins/vmware/nsxlib/router.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/neutron/api/v2/resource.py b/neutron/api/v2/resource.py index fb139b2ac..34f724e15 100644 --- a/neutron/api/v2/resource.py +++ b/neutron/api/v2/resource.py @@ -120,7 +120,7 @@ def Resource(controller, faults=None, deserializers=None, serializers=None): {'NotImplementedError': e.message}) kwargs = {'body': body, 'content_type': content_type} raise webob.exc.HTTPNotImplemented(**kwargs) - except Exception as e: + except Exception: # NOTE(jkoelker) Everything else is 500 LOG.exception(_('%s failed'), action) # Do not expose details of 500 error to clients. diff --git a/neutron/plugins/vmware/nsxlib/router.py b/neutron/plugins/vmware/nsxlib/router.py index 63bae2d31..3f39e36e7 100644 --- a/neutron/plugins/vmware/nsxlib/router.py +++ b/neutron/plugins/vmware/nsxlib/router.py @@ -591,7 +591,7 @@ def update_lrouter_port_ips(cluster, lrouter_id, lport_id, # Set is not JSON serializable - convert to list port['ip_addresses'] = list(ip_address_set) do_request(HTTP_PUT, uri, jsonutils.dumps(port), cluster=cluster) - except exception.NotFound as e: + except exception.NotFound: # FIXME(salv-orlando):avoid raising different exception data = {'lport_id': lport_id, 'lrouter_id': lrouter_id} msg = (_("Router Port %(lport_id)s not found on router " -- 2.45.2