From 9326adf34baa80cae2f2f998d8fc7cff50fb8534 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Mon, 24 Jun 2013 13:23:31 +0200 Subject: [PATCH] fix refactor error Signed-off-by: Nico Schottelius --- cdist/exec/local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdist/exec/local.py b/cdist/exec/local.py index 693830eb..da7f69c1 100644 --- a/cdist/exec/local.py +++ b/cdist/exec/local.py @@ -161,7 +161,7 @@ class Local(object): self._link_types_for_emulator() def save_cache(self): - destination = os.path.join(self.local.cache_path, self.target_host) + destination = os.path.join(self.cache_path, self.target_host) self.log.debug("Saving " + self.out_path + " to " + destination) if os.path.exists(destination): shutil.rmtree(destination)