From 3c8b0fd6839e4bea1c360c777e4ec3cecef48da1 Mon Sep 17 00:00:00 2001 From: Gary Kotton Date: Sun, 8 Nov 2015 04:49:25 -0800 Subject: [PATCH] Add in missing spaces at end of line Trivial updates to log messages that do not have spaces at the end of a line. TrivialFix Change-Id: I126e7e3535c6b8ecaeffe4210fdad6e6f238a37c --- neutron/db/ipam_pluggable_backend.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/neutron/db/ipam_pluggable_backend.py b/neutron/db/ipam_pluggable_backend.py index 865d05558..f364f5f99 100644 --- a/neutron/db/ipam_pluggable_backend.py +++ b/neutron/db/ipam_pluggable_backend.py @@ -164,7 +164,7 @@ class IpamPluggableBackend(ipam_backend_mixin.IpamBackendMixin): except Exception: with excutils.save_and_reraise_exception(): if ips: - LOG.debug("An exception occurred during port creation." + LOG.debug("An exception occurred during port creation. " "Reverting IP allocation") ipam_driver = driver.Pool.get_instance(None, context) self._ipam_deallocate_ips(context, ipam_driver, @@ -363,7 +363,7 @@ class IpamPluggableBackend(ipam_backend_mixin.IpamBackendMixin): with excutils.save_and_reraise_exception(): if "allocation_pools" in s and old_pools: LOG.error( - _LE("An exception occurred during subnet update." + _LE("An exception occurred during subnet update. " "Reverting allocation pool changes")) s['allocation_pools'] = old_pools self._ipam_update_allocation_pools(context, ipam_driver, s) @@ -446,7 +446,7 @@ class IpamPluggableBackend(ipam_backend_mixin.IpamBackendMixin): # IPAM part rolled back in exception handling # and subnet part is rolled back by transaction rollback. with excutils.save_and_reraise_exception(): - LOG.debug("An exception occurred during subnet creation." + LOG.debug("An exception occurred during subnet creation. " "Reverting subnet allocation.") self.delete_subnet(context, subnet_request.subnet_id) return subnet, ipam_subnet -- 2.45.2