rename parameter correctly to add_conf_dirs

Signed-off-by: Nico Schottelius <nico@brief.schottelius.org>
This commit is contained in:
Nico Schottelius 2012-11-01 13:46:01 +01:00
parent 32a94a0f89
commit 6eddaaf090
1 changed files with 2 additions and 2 deletions

View File

@ -37,13 +37,13 @@ class Local(object):
Directly accessing the local side from python code is a bug.
"""
def __init__(self, target_host, conf_dirs, out_path, exec_path, cache_dir=None):
def __init__(self, target_host, out_path, exec_path, add_conf_dirs=[], cache_dir=None):
self.target_host = target_host
self.out_path = out_path
self.exec_path = exec_path
self._add_conf_dirs = conf_dirs
self._add_conf_dirs = add_conf_dirs
self._init_log()
self._init_permissions()