From 297367390f719853c46ef775acfec79d7ad3135f Mon Sep 17 00:00:00 2001 From: Darko Poljak Date: Sun, 30 Oct 2016 17:21:08 +0100 Subject: [PATCH] Fix bug. --- cdist/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdist/config.py b/cdist/config.py index 2ce50b52..e6251476 100644 --- a/cdist/config.py +++ b/cdist/config.py @@ -192,7 +192,7 @@ class Config(object): for host in itertools.chain(cls.hosts(args.host), cls.hosts(args.hostfile)): host_base_path, hostdir = cls.create_host_base_dirs( - host, hostdir) + host, base_root_path) log.debug("Base root path for target host \"{}\" is \"{}\"".format( host, host_base_path))