diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2017-02-27 10:28:57 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-02-27 10:28:57 +0000 |
commit | 6e1a9d6807a85155bb73ed93ef3bbd48909f3e46 (patch) | |
tree | 777ecf08892546991a0696a6dabf9cdf29d432b6 /utils/test/testapi/opnfv_testapi/common | |
parent | 512c71b637b3b07cf184383a539fcaf87e245c94 (diff) | |
parent | 0e5b6741f1dea91cfddbc92553e68a7e1e1fdb3a (diff) |
Merge "Use new-style classes which inherit from object in TestAPI"
Diffstat (limited to 'utils/test/testapi/opnfv_testapi/common')
-rw-r--r-- | utils/test/testapi/opnfv_testapi/common/config.py | 2 |
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() |