From 03ea7787d2bf55212e33e077fe7d4970f50b1422 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Sun, 16 Oct 2011 18:38:22 +0200 Subject: [PATCH] +self Signed-off-by: Nico Schottelius --- lib/cdist/emulator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cdist/emulator.py b/lib/cdist/emulator.py index ddd9dfdb..103ea8c0 100644 --- a/lib/cdist/emulator.py +++ b/lib/cdist/emulator.py @@ -134,7 +134,7 @@ class Emulator(object): self.parameters[key] = value if self.cdist_object.exists: - if cdist_object.parameters != self.parameters: + if self.cdist_object.parameters != self.parameters: raise cdist.Error("Object %s already exists with conflicting parameters:\n%s: %s\n%s: %s" % (self.cdist_object, " ".join(self.cdist_object.source), self.cdist_object.parameters, self.object_source, self.parameters) )