Skip to content

Commit f7eae4d

Browse files
Bastian-KrauseEmantor
authored andcommitted
remote: exporter: use % formatting in logging method
Signed-off-by: Bastian Krause <[email protected]>
1 parent 5c6d842 commit f7eae4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

labgrid/remote/exporter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ def _start(self, start_params):
247247
'-C',
248248
f'{self.port}:telnet:0:{start_params["path"]}:{self.local.speed} NONE 8DATABITS 1STOPBIT LOCAL', # pylint: disable=line-too-long
249249
]
250-
self.logger.info("Starting ser2net with: {}".format(" ".join(cmd)))
250+
self.logger.info("Starting ser2net with: %s", " ".join(cmd))
251251
self.child = subprocess.Popen(cmd)
252252
try:
253253
self.child.wait(timeout=0.5)

0 commit comments

Comments
 (0)