fix cache_dir syntax error

Signed-off-by: Nico Schottelius <nico@brief.schottelius.org>
This commit is contained in:
Nico Schottelius 2012-10-30 16:11:03 +01:00
commit e41aae041a
2 changed files with 8 additions and 7 deletions

View file

@ -59,7 +59,7 @@ class Context(object):
self.temp_dir = tempfile.mkdtemp()
self.out_path = os.path.join(self.temp_dir, "out")
self.local = local.Local(self.target_host, self.conf_dirs, self.out_path)
self.local = local.Local(self.target_host, conf_dirs, self.out_path)
self.initial_manifest = (initial_manifest or
os.path.join(self.local.manifest_path, "init"))