Fix error thrown by logging in common/neutron.py

"TypeError: not all arguments converted during string formatting" error
is thrown due to an extra comma at the end of one of the string lines in
logging in common/neutron.py

Change-Id: If9e6f9ca4074f24b0639563e4c86c19e13f5d1e3
This commit is contained in:
Sam Betts 2018-05-02 15:33:21 +01:00
parent 0f404fa76c
commit 6d849224c3
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ def add_ports_to_network(task, network_uuid, security_groups=None):
"the following ports: %(ports)s.",
{'node': node.uuid, 'ports': failures})
else:
LOG.info('For node %(node_uuid)s in network %(net)s, successfully ',
LOG.info('For node %(node_uuid)s in network %(net)s, successfully '
'created ports (ironic ID: neutron ID): %(ports)s.',
{'node_uuid': node.uuid, 'net': network_uuid, 'ports': ports})