aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/benchmark/contexts/heat.py
diff options
context:
space:
mode:
authorRex Lee <limingjiang@huawei.com>2017-02-14 07:30:56 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-02-14 07:30:56 +0000
commit5420dd71763226d78fb1ff486b78918432c73e49 (patch)
tree3528f11382abae3774edef78c2b7a1db2e7b7bdd /yardstick/benchmark/contexts/heat.py
parent523e002f3e8af341c9f13e626fa0f91ee2c33074 (diff)
parent6a9f0f9fbd1e86f320ccc188403cd2e1a2a66c70 (diff)
Merge "fix super() calls, must use explicit class name"
Diffstat (limited to 'yardstick/benchmark/contexts/heat.py')
-rw-r--r--yardstick/benchmark/contexts/heat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yardstick/benchmark/contexts/heat.py b/yardstick/benchmark/contexts/heat.py
index 4e31bdca6..0b9a4d294 100644
--- a/yardstick/benchmark/contexts/heat.py
+++ b/yardstick/benchmark/contexts/heat.py
@@ -55,7 +55,7 @@ class HeatContext(Context):
self.key_filename = ''.join(
[YARDSTICK_ROOT_PATH, 'yardstick/resources/files/yardstick_key-',
get_short_key_uuid(self.key_uuid)])
- super(self.__class__, self).__init__()
+ super(HeatContext, self).__init__()
def init(self, attrs):
"""initializes itself from the supplied arguments"""