diff options
Diffstat (limited to 'app/views/tasks.py')
-rw-r--r-- | app/views/tasks.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/tasks.py b/app/views/tasks.py index 3759543..150fb81 100644 --- a/app/views/tasks.py +++ b/app/views/tasks.py @@ -5,10 +5,10 @@ from app import app, csrf from app.models import * from app.tasks import celery, TaskError from app.tasks.importtasks import getMeta -from .utils import shouldReturnJson +from app.utils import shouldReturnJson # from celery.result import AsyncResult -from .utils import * +from app.utils import * @csrf.exempt @app.route("/tasks/getmeta/new/", methods=["POST"]) |