From 63c9a91bcad5eac759240f00c8ddc0cdcf0d9ff4 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Fri, 7 Oct 2011 17:12:06 +0200 Subject: [PATCH] +whitespace save out only Signed-off-by: Nico Schottelius --- lib/cdist/context.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cdist/context.py b/lib/cdist/context.py index fb00b423..a4fdbca5 100644 --- a/lib/cdist/context.py +++ b/lib/cdist/context.py @@ -99,11 +99,11 @@ class Context: # "other globals referenced by the __del__() method may already have been deleted # or in the process of being torn down (e.g. the import machinery shutting down)" # - log.debug("Saving" + self.base_path + "to " + self.cache_path) + log.debug("Saving " + self.out_path + " to " + self.cache_path) # Remove previous cache if os.path.exists(self.cache_path): shutil.rmtree(self.cache_path) - shutil.move(self.base_path, self.cache_path) + shutil.move(self.out_path, self.cache_path) def __init_out_paths(self): """Initialise output directory structure"""