From 7f6465f4d807b7276011b42e019f3c859f48feb2 Mon Sep 17 00:00:00 2001 From: Shih-Hao Li Date: Mon, 14 Nov 2016 15:54:52 -0800 Subject: [PATCH] NSXv3: Fix an exception typo Change-Id: Ic08fce0419bc7f25fd36fb2290b59dab366c8457 --- vmware_nsx/plugins/nsx_v3/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vmware_nsx/plugins/nsx_v3/plugin.py b/vmware_nsx/plugins/nsx_v3/plugin.py index d120aad74c..58eb060021 100644 --- a/vmware_nsx/plugins/nsx_v3/plugin.py +++ b/vmware_nsx/plugins/nsx_v3/plugin.py @@ -1117,7 +1117,7 @@ class NsxV3Plugin(agentschedulers_db.AZDhcpAgentSchedulerDbMixin, {'id': dhcp_info['nsx_port_id'], 'e': e}) try: self._dhcp_server.delete(dhcp_info['nsx_service_id']) - except Exception: + except Exception as e: LOG.error(_LE("Failed to delete logical DHCP server %(id)s " "during rollback. Exception: %(e)s"), {'id': dhcp_info['nsx_service_id'], 'e': e})