summaryrefslogtreecommitdiffstats
path: root/testapi/opnfv_testapi/models/scenario_models.py
diff options
context:
space:
mode:
Diffstat (limited to 'testapi/opnfv_testapi/models/scenario_models.py')
-rw-r--r--testapi/opnfv_testapi/models/scenario_models.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/testapi/opnfv_testapi/models/scenario_models.py b/testapi/opnfv_testapi/models/scenario_models.py
index 0610c6b..01b5c2b 100644
--- a/testapi/opnfv_testapi/models/scenario_models.py
+++ b/testapi/opnfv_testapi/models/scenario_models.py
@@ -178,8 +178,9 @@ class Scenario(base_models.ModelBase):
@property installers:
@ptype installers: C{list} of L{ScenarioInstaller}
"""
- def __init__(self, name='', create_date='', _id='', installers=None):
+ def __init__(self, name='', create_date='', _id='', creator='', installers=None):
self.name = name
+ self.creator = creator
self._id = _id
self.creation_date = create_date
self.installers = list_default(installers)