From 8545221787266302ddbe71eef58c147f2c6b7e4e Mon Sep 17 00:00:00 2001 From: Steven Armstrong Date: Thu, 13 Oct 2011 00:16:30 +0200 Subject: [PATCH] consistent naming: /object_base_path/object_path/ 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 8192bf0c..1f253f09 100644 --- a/lib/cdist/exec/local.py +++ b/lib/cdist/exec/local.py @@ -67,7 +67,7 @@ class Local(object): self.out_path = out_path self.bin_path = os.path.join(self.out_path, "bin") self.global_explorer_out_path = os.path.join(self.out_path, "explorer") - self.object_base_path = os.path.join(self.out_path, "object") + self.object_path = os.path.join(self.out_path, "object") self.log = logging.getLogger(self.target_host)