summaryrefslogtreecommitdiffstats
path: root/src/python
diff options
context:
space:
mode:
authorJan Safranek <jsafrane@redhat.com>2014-04-17 15:30:12 +0200
committerJan Safranek <jsafrane@redhat.com>2014-04-17 15:30:12 +0200
commitab258cb4f8af61117496f72dae48a4493bae55e5 (patch)
treea07f50154e2f57c1103fc5360b3afc5e48d94cf4 /src/python
parentbf8c0203b9c9b1b6c52606084448a222d19ab3ae (diff)
downloadopenlmi-providers-ab258cb4f8af61117496f72dae48a4493bae55e5.tar.gz
openlmi-providers-ab258cb4f8af61117496f72dae48a4493bae55e5.tar.xz
openlmi-providers-ab258cb4f8af61117496f72dae48a4493bae55e5.zip
Fixed loading of logging config.
- use correct config file path - read correct config file item
Diffstat (limited to 'src/python')
-rw-r--r--src/python/lmi/base/BaseConfiguration.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/lmi/base/BaseConfiguration.py b/src/python/lmi/base/BaseConfiguration.py
index baabcc6..b3d9c0d 100644
--- a/src/python/lmi/base/BaseConfiguration.py
+++ b/src/python/lmi/base/BaseConfiguration.py
@@ -221,7 +221,7 @@ class BaseConfiguration(Singleton):
"""
path = self.config.get(section, option)
if not os.path.isabs(path):
- path = os.path.join(self.config_directory(), path)
+ path = os.path.join(self.config_directory_provider(), path)
return path
def get_safe(self, section, option, convert=str, fallback=None,