From e9541b2a2a6b1e35e735b2f718adb23b7b188e7a Mon Sep 17 00:00:00 2001 From: Steven Armstrong Date: Wed, 19 Oct 2011 16:29:30 +0200 Subject: [PATCH] == is not = :-/ Signed-off-by: Steven Armstrong --- lib/cdist/config_install.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cdist/config_install.py b/lib/cdist/config_install.py index 7dd001c6..59cd9f55 100644 --- a/lib/cdist/config_install.py +++ b/lib/cdist/config_install.py @@ -160,8 +160,8 @@ class ConfigInstall(object): self.code.run_code_remote(cdist_object) # Mark this object as done - self.log.info("Finishing run of " + cdist_object.name) - cdist_object.state == core.Object.STATE_DONE + self.log.debug("Finishing run of " + cdist_object.name) + cdist_object.state = core.Object.STATE_DONE def stage_run(self): """The final (and real) step of deployment"""