Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
This commit is contained in:
Steven Armstrong 2012-11-15 14:54:28 +01:00
parent bec3569724
commit 6c685e61d5
1 changed files with 2 additions and 0 deletions

View File

@ -135,6 +135,8 @@ class Emulator(object):
self.parameters = {}
for key,value in vars(self.args).items():
if value is not None:
if isinstance(value, list):
value = '\n'.join(value)
self.parameters[key] = value
if self.cdist_object.exists: