From d2878e931ed572820da507b17761a03ad82a97ed Mon Sep 17 00:00:00 2001 From: Steven Armstrong Date: Wed, 12 Oct 2011 16:50:21 +0200 Subject: [PATCH] /Remote/Local/ Signed-off-by: Steven Armstrong --- lib/cdist/exec/local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cdist/exec/local.py b/lib/cdist/exec/local.py index aec65e68..b346bf7d 100644 --- a/lib/cdist/exec/local.py +++ b/lib/cdist/exec/local.py @@ -40,7 +40,7 @@ class LocalScriptError(cdist.Error): self.script_content = script_content def __str__(self): - return "Remote script execution failed: %s %s" % (self.script, self.command) + return "Local script execution failed: %s %s" % (self.script, self.command) class Local(object):