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 24cd8598dc)
This commit is contained in:
Nate Johnston 2020-10-07 21:05:48 -04:00 committed by Rikimaru Honjo
parent 9577c90799
commit b9c2dd48fa
1 changed files with 1 additions and 1 deletions

View File

@ -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})