From 0da3845cd2dcb59fd4e407b85274aba389d7c2d6 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 30 Nov 2020 01:04:25 +0100 Subject: [PATCH] Fix format character. --- cdist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdist b/cdist index b422c36..0aa4fd2 100755 --- a/cdist +++ b/cdist @@ -261,7 +261,7 @@ def command(c): if r.returncode != 0: raise Error('command %s failed (%d)' % (c, r.returncode)) except Exception as e: - raise Error('command %s failed (%d)' % (c, e)) + raise Error('command %s failed (%s)' % (c, e)) def command_and_read(c): log_normal(c) -- 2.30.2