From d38b5cb397964cfe9ebd79b94650bda533febf09 Mon Sep 17 00:00:00 2001 From: ori agranat Date: Sat, 9 Mar 2019 23:49:50 +0200 Subject: [PATCH] bug fix of python imports --- Python/app/ChameleonVisionApp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Python/app/ChameleonVisionApp.py b/Python/app/ChameleonVisionApp.py index 0663ac4ce..b1f979578 100644 --- a/Python/app/ChameleonVisionApp.py +++ b/Python/app/ChameleonVisionApp.py @@ -2,8 +2,8 @@ import tornado.web import tornado.websocket import os -from handlers.MainHandler import MainHandler -from handlers.SocketHandler import ChameleonWebSocket +from .handlers.MainHandler import MainHandler +from .handlers.SocketHandler import ChameleonWebSocket from tornado.options import define define("port", default=8888, help="run on the given port", type=int)