use _path not _dir in emulator

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2011-10-07 16:13:00 +02:00
parent 14c9317f66
commit 2aa0a316e6
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ log = logging.getLogger(__name__)
def run(argv):
"""Emulate type commands (i.e. __file and co)"""
type = os.path.basename(argv[0])
type_dir = os.path.join(os.environ['__cdist_type_base_dir'], type)
type_dir = os.path.join(os.environ['__cdist_type_base_path'], type)
param_dir = os.path.join(type_dir, "parameter")
global_dir = os.environ['__global']
object_source = os.environ['__cdist_manifest']