NSXv3: Fix an exception typo

Change-Id: Ic08fce0419bc7f25fd36fb2290b59dab366c8457
This commit is contained in:
Shih-Hao Li 2016-11-14 15:54:52 -08:00
parent e8b840f769
commit 7f6465f4d8

View File

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