diff options
author | Jose Lausuch <jalausuch@suse.com> | 2017-11-23 12:07:44 +0100 |
---|---|---|
committer | Jose Lausuch <jalausuch@suse.com> | 2017-11-23 12:07:44 +0100 |
commit | 5fcf83714d04b1c0c7001deca5312ee577d8b745 (patch) | |
tree | d3997ef5ece5b7f2bb273e7e4e04a53f52ba9641 /functest | |
parent | 71ba783c1279370af035ff7cac2de7522e95de78 (diff) |
Remove _set_others() from config
Change-Id: I39e37ce9f8715e21fcfc4a053b83d508530fad5e
Signed-off-by: Jose Lausuch <jalausuch@suse.com>
Diffstat (limited to 'functest')
-rw-r--r-- | functest/utils/config.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/functest/utils/config.py b/functest/utils/config.py index 6b5021a2..6bb4f58e 100644 --- a/functest/utils/config.py +++ b/functest/utils/config.py @@ -15,7 +15,6 @@ class Config(object): self._parse(None, self.functest_yaml) except Exception as error: raise Exception('Parse config failed: {}'.format(str(error))) - self._set_others() def _parse(self, attr_now, left_parametes): for param_n, param_v in six.iteritems(left_parametes): @@ -29,7 +28,5 @@ class Config(object): return attr_now if next == 'general' else ( '{}_{}'.format(attr_now, next) if attr_now else next) - def _set_others(self): - pass CONF = Config() |