diff options
author | Serena Feng <feng.xiaowei@zte.com.cn> | 2017-09-05 08:24:46 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-09-05 08:24:46 +0000 |
commit | ca6539a8f8c7f608623cdd578d2d606322f06370 (patch) | |
tree | 2520700acb7a11aa485c5878e7a3a553cbec33d1 /utils/test/testapi/opnfv_testapi/cmd/server.py | |
parent | ab38b8924b8b39eb44201f9bfa41f009a3eea0a1 (diff) | |
parent | 0b087ed645c0cd125cf5c6198f2bf115cb4de4b0 (diff) |
Merge "bugfix: leverage data_files to stop hacking setup.py"
Diffstat (limited to 'utils/test/testapi/opnfv_testapi/cmd/server.py')
-rw-r--r-- | utils/test/testapi/opnfv_testapi/cmd/server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/test/testapi/opnfv_testapi/cmd/server.py b/utils/test/testapi/opnfv_testapi/cmd/server.py index 50ac049a0..b7d3caa20 100644 --- a/utils/test/testapi/opnfv_testapi/cmd/server.py +++ b/utils/test/testapi/opnfv_testapi/cmd/server.py @@ -38,7 +38,7 @@ from opnfv_testapi.tornado_swagger import swagger def make_app(): swagger.docs(base_url=CONF.ui_url, - static_path=CONF.static_path) + static_path=CONF.ui_static_path) return swagger.Application( url_mappings.mappings, debug=CONF.api_debug, |