diff options
author | 2017-05-11 10:26:59 +0000 | |
---|---|---|
committer | 2017-05-11 10:26:59 +0000 | |
commit | e4860a96018db9d3282ee2f77cd33843e6adc624 (patch) | |
tree | b4b529125a934b25eb55108aa97860285cbbae37 /testapi/opnfv_testapi/resources/handlers.py | |
parent | 229a3eb38d9c59a964d17d98a1e60eb03a75b405 (diff) | |
parent | 71a3c218ef53459fca53b0e1cc31d5f726e5b436 (diff) |
Merge "correct the import impl of TestAPI"
Diffstat (limited to 'testapi/opnfv_testapi/resources/handlers.py')
-rw-r--r-- | testapi/opnfv_testapi/resources/handlers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testapi/opnfv_testapi/resources/handlers.py b/testapi/opnfv_testapi/resources/handlers.py index 955fbbe..dbf94eb 100644 --- a/testapi/opnfv_testapi/resources/handlers.py +++ b/testapi/opnfv_testapi/resources/handlers.py @@ -26,10 +26,10 @@ import json from tornado import gen from tornado import web -import models from opnfv_testapi.common import check from opnfv_testapi.common import message from opnfv_testapi.common import raises +from opnfv_testapi.resources import models from opnfv_testapi.tornado_swagger import swagger DEFAULT_REPRESENTATION = "application/json" |