This commit is contained in:
Nico Schottelius 2012-11-16 15:34:58 +01:00
commit 500c194328
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: