summaryrefslogtreecommitdiffstats
path: root/qtip/api/qtip_server.py
diff options
context:
space:
mode:
authorzhifeng.jiang <jiang.zhifeng@zte.com.cn>2016-11-16 21:54:28 +0800
committerzhifeng.jiang <jiang.zhifeng@zte.com.cn>2016-11-16 22:22:18 +0800
commit0b95c723514a0f37b38460cf011061c9e19ebe44 (patch)
tree2c1583b1e1e202c5fe99b2c75bcb080c1a970128 /qtip/api/qtip_server.py
parent2b3df7dce52e965ba5992334ce7d3d1c229a9ce9 (diff)
Bugfix:Correct the import path in qtip_server.
JIRA:QTIP-158 Change-Id: I962b01496346dc2257b069b4feffaef6dd094322 Signed-off-by: zhifeng.jiang <jiang.zhifeng@zte.com.cn>
Diffstat (limited to 'qtip/api/qtip_server.py')
-rw-r--r--qtip/api/qtip_server.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/qtip/api/qtip_server.py b/qtip/api/qtip_server.py
index 537b2c05..9b9dd633 100644
--- a/qtip/api/qtip_server.py
+++ b/qtip/api/qtip_server.py
@@ -12,8 +12,8 @@ from flask_restful_swagger import swagger
import threading
from copy import copy
import db
-import utils.args_handler as args_handler
-import restful_server.result_handler as result_handler
+import qtip.utils.args_handler as args_handler
+import qtip.api.result_handler as result_handler
app = Flask(__name__)