summaryrefslogtreecommitdiffstats
path: root/utils/test
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2017-02-27 10:28:57 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-02-27 10:28:57 +0000
commit6e1a9d6807a85155bb73ed93ef3bbd48909f3e46 (patch)
tree777ecf08892546991a0696a6dabf9cdf29d432b6 /utils/test
parent512c71b637b3b07cf184383a539fcaf87e245c94 (diff)
parent0e5b6741f1dea91cfddbc92553e68a7e1e1fdb3a (diff)
Merge "Use new-style classes which inherit from object in TestAPI"
Diffstat (limited to 'utils/test')
-rw-r--r--utils/test/testapi/opnfv_testapi/common/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/test/testapi/opnfv_testapi/common/config.py b/utils/test/testapi/opnfv_testapi/common/config.py
index 45e134fc1..105d4fabf 100644
--- a/utils/test/testapi/opnfv_testapi/common/config.py
+++ b/utils/test/testapi/opnfv_testapi/common/config.py
@@ -23,7 +23,7 @@ class ParseError(Exception):
return 'error parsing config file : %s' % self.msg
-class APIConfig:
+class APIConfig(object):
"""
The purpose of this class is to load values correctly from the config file.
Each key is declared as an attribute in __init__() and linked in parse()