From: Hong Hui Xiao Date: Thu, 15 Oct 2015 03:26:24 +0000 (-0400) Subject: The first word of the error message should be capitalized X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=55a7a376860afa292d35f886d39c8c16c65c24d2;p=openstack-build%2Fneutron-build.git The first word of the error message should be capitalized The patch is straightforward, just spelling mistake. Change-Id: I127a155800a11d09cd0b3d332cfeed7e6920a222 Closes-bug: #1506289 --- diff --git a/neutron/agent/linux/external_process.py b/neutron/agent/linux/external_process.py index 2bccdf67c..9f1808fb0 100644 --- a/neutron/agent/linux/external_process.py +++ b/neutron/agent/linux/external_process.py @@ -247,7 +247,7 @@ class ProcessMonitor(object): action_function(service_id) def _respawn_action(self, service_id): - LOG.error(_LE("respawning %(service)s for uuid %(uuid)s"), + LOG.error(_LE("Respawning %(service)s for uuid %(uuid)s"), {'service': service_id.service, 'uuid': service_id.uuid}) self._monitored_processes[service_id].enable()