summaryrefslogtreecommitdiffstats
path: root/testapi/opnfv_testapi/ui/root.py
diff options
context:
space:
mode:
Diffstat (limited to 'testapi/opnfv_testapi/ui/root.py')
-rw-r--r--testapi/opnfv_testapi/ui/root.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testapi/opnfv_testapi/ui/root.py b/testapi/opnfv_testapi/ui/root.py
index bba7a86..5b2c922 100644
--- a/testapi/opnfv_testapi/ui/root.py
+++ b/testapi/opnfv_testapi/ui/root.py
@@ -1,10 +1,10 @@
from opnfv_testapi.resources.handlers import GenericApiHandler
-from opnfv_testapi.common import config
+from opnfv_testapi.common.config import CONF
class RootHandler(GenericApiHandler):
def get_template_path(self):
- return config.Config().static_path
+ return CONF.static_path
def get(self):
self.render('testapi-ui/index.html')