From 1db4cd48d24fecd4e92b4a941de3f86ef291c910 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Thu, 6 Oct 2011 20:11:23 +0200 Subject: [PATCH] -typo Signed-off-by: Nico Schottelius --- lib/cdist/config_install.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lib/cdist/config_install.py b/lib/cdist/config_install.py index f3dac289..1f590d07 100644 --- a/lib/cdist/config_install.py +++ b/lib/cdist/config_install.py @@ -55,12 +55,10 @@ class ConfigInstall: base_dir=home, debug=debug) - self.objects_prepared = [] - def cleanup(self): self.path.cleanup() - def run_global_explores(self): + def run_global_explorers(self): """Run global explorers""" log.info("Running global explorers") explorers = self.path.list_global_explorers() @@ -269,7 +267,7 @@ class ConfigInstall: def stage_prepare(self): """Do everything for a deploy, minus the actual code stage""" self.init_deploy() - self.run_global_explores() + self.run_global_explorers() self.run_initial_manifest() log.info("Running object manifests and type explorers") @@ -285,6 +283,5 @@ class ConfigInstall: else: self.run_type_explorer(cdist_object) self.run_type_manifest(cdist_object) - self.objects_prepared.append(cdist_object) cdist_object.prepared = True new_objects_created = True