From 9c082125764903267abfe8318cd8ea90b5405959 Mon Sep 17 00:00:00 2001 From: Nate Johnston Date: Wed, 7 Oct 2020 21:05:48 -0400 Subject: [PATCH] Fix formatting error in agent/linux/external_process.py Formatting error causes exception in certain circumstances; fix is trivial. Co-Authored-By: captainmish@gmail.com Change-Id: I2bd7f2f3d798228fee6ba26d0e1a32e3033e9fc1 Closes-Bug: #1898789 (cherry-picked from commit 24cd8598dcbedf51838fc737938d5d764ba14147) --- 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 f5bc1f89b0a..a00819ae45d 100644 --- a/neutron/agent/linux/external_process.py +++ b/neutron/agent/linux/external_process.py @@ -115,7 +115,7 @@ class ProcessManager(MonitoredProcess): if sig == '9': fileutils.delete_if_exists(self.get_pid_file_name()) elif pid: - LOG.debug('%{service}s process for %(uuid)s pid %(pid)d is stale, ' + LOG.debug('%(service)s process for %(uuid)s pid %(pid)d is stale, ' 'ignoring signal %(signal)s', {'service': self.service, 'uuid': self.uuid, 'pid': pid, 'signal': sig})