summaryrefslogtreecommitdiffstats
path: root/utils/test/testapi/opnfv_testapi/tornado_swagger/views.py
diff options
context:
space:
mode:
authorSerena Feng <feng.xiaowei@zte.com.cn>2017-05-18 01:00:40 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-05-18 01:00:40 +0000
commit26215c783dd2eb900eb0e987bd9b3b850c05e3fe (patch)
tree6184aadeb8753fec3213fef3a529726a1cd3dc45 /utils/test/testapi/opnfv_testapi/tornado_swagger/views.py
parent8952b1d73c5ac50f7267c89a19ab83b6664fade5 (diff)
parenta1a745b4820ec46a2e707d77f6178cf9e97654f6 (diff)
Merge "refactor static_path to accomodate web portal"
Diffstat (limited to 'utils/test/testapi/opnfv_testapi/tornado_swagger/views.py')
-rw-r--r--utils/test/testapi/opnfv_testapi/tornado_swagger/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/test/testapi/opnfv_testapi/tornado_swagger/views.py b/utils/test/testapi/opnfv_testapi/tornado_swagger/views.py
index 42b37483b..793999700 100644
--- a/utils/test/testapi/opnfv_testapi/tornado_swagger/views.py
+++ b/utils/test/testapi/opnfv_testapi/tornado_swagger/views.py
@@ -33,7 +33,7 @@ class SwaggerUIHandler(tornado.web.RequestHandler):
def get(self):
resource_url = self.reverse_url(settings.RESOURCE_LISTING_NAME)
discovery_url = self.base_url + resource_url
- self.render('index.html', discovery_url=discovery_url)
+ self.render('swagger/index.html', discovery_url=discovery_url)
class SwaggerResourcesHandler(tornado.web.RequestHandler):