1
0
mirror of https://github.com/ARM-software/devlib.git synced 2025-02-07 05:30:44 +00:00

acmecape: fix warning formatting

This commit is contained in:
Sergei Trofimov 2018-03-02 15:50:52 +00:00 committed by Marc Bonnici
parent 7a8f98720d
commit 17d32a4d40

View File

@ -60,8 +60,7 @@ class AcmeCapeInstrument(Instrument):
def __del__(self):
if self.process and self.process.pid:
self.logger.warning('killing iio-capture process [%d]...',
self.process.pid)
self.logger.warning('killing iio-capture process [{}]...'.format(self.process.pid))
self.process.kill()
def reset(self, sites=None, kinds=None, channels=None):