From e2e1d0bb67cfb4578177c0b2cd3ce86fbda5e76c Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Wed, 7 Nov 2012 11:05:29 +0100 Subject: [PATCH] include % Signed-off-by: Nico Schottelius --- cdist/core/manifest.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cdist/core/manifest.py b/cdist/core/manifest.py index 1e34afbf..19639618 100644 --- a/cdist/core/manifest.py +++ b/cdist/core/manifest.py @@ -71,11 +71,11 @@ class NoInitialManifestError(cdist.Error): if user_supplied: if os.path.islink(manifest_path): - self.message = "%s: %s -> %s" (msg_header, manifest_path, os.path.realpath(manifest_path)) + self.message = "%s: %s -> %s" % (msg_header, manifest_path, os.path.realpath(manifest_path)) else: - self.message = "%s: %s" (msg_header, manifest_path) + self.message = "%s: %s" % (msg_header, manifest_path) else: - self.message = "%s" (msg_header) + self.message = "%s" % (msg_header) def __str__(self): return repr(self.message)