diff options
-rw-r--r-- | sos/plugins/corosync.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/corosync.py b/sos/plugins/corosync.py index 174e8936..1d19c90d 100644 --- a/sos/plugins/corosync.py +++ b/sos/plugins/corosync.py @@ -52,7 +52,7 @@ class Corosync(Plugin): if re.match(pattern, line): self.add_copy_spec(re.search(pattern, line).group(2)) except IOError as e: - self._log_warn("could not read from %s: %s", corosync_conf, e) + self._log_warn("could not read from %s: %s" % (corosync_conf, e)) def postproc(self): self.do_cmd_output_sub( |