Skip to content

Commit 7447f8e

Browse files
committed
Get rid of the % operator
1 parent b833a7d commit 7447f8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/vsc/utils/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ def _init_process(self):
319319
try:
320320
self._process = self._process_module.Popen(self._shellcmd, **self._popen_named_args)
321321
except OSError as err:
322-
self.log.exception("_init_process: init Popen shellcmd %s failed: %s" % (self._shellcmd, err))
322+
self.log.exception("_init_process: init Popen shellcmd %s failed: %s", self._shellcmd, err)
323323
raise
324324

325325
def _init_input(self):

0 commit comments

Comments
 (0)