From 78fd611bb02faa5d552bf4efbf94f7ed6f0e67bb Mon Sep 17 00:00:00 2001 From: Steven Armstrong Date: Wed, 12 Oct 2011 16:56:16 +0200 Subject: [PATCH] fix cdist_base_path Signed-off-by: Steven Armstrong --- lib/cdist/test/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cdist/test/__init__.py b/lib/cdist/test/__init__.py index 06c87917..2f88bf7e 100644 --- a/lib/cdist/test/__init__.py +++ b/lib/cdist/test/__init__.py @@ -28,7 +28,7 @@ import unittest cdist_commands=["banner", "config", "install"] cdist_base_path = os.path.abspath( - os.path.join(os.path.dirname(os.path.realpath(__file__)), "../../")) + os.path.join(os.path.dirname(os.path.realpath(__file__)), "../../../")) cdist_exec_path = os.path.join(cdist_base_path, "bin/cdist")