From 55a7a376860afa292d35f886d39c8c16c65c24d2 Mon Sep 17 00:00:00 2001 From: Hong Hui Xiao Date: Wed, 14 Oct 2015 23:26:24 -0400 Subject: [PATCH] The first word of the error message should be capitalized The patch is straightforward, just spelling mistake. Change-Id: I127a155800a11d09cd0b3d332cfeed7e6920a222 Closes-bug: #1506289 --- neutron/agent/linux/external_process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- 2.45.2