summaryrefslogtreecommitdiffstats
path: root/pyload/webui/app
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-11 02:49:06 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-11 02:49:06 +0100
commite7cc40202600f85427441e367b18188289e4fbbb (patch)
tree878641d52aafdf9c0c785a6d97db0a8dd6ffdd21 /pyload/webui/app
parentRename some events + engage renamed addon methods (diff)
downloadpyload-e7cc40202600f85427441e367b18188289e4fbbb.tar.xz
Clean up some import header
Diffstat (limited to 'pyload/webui/app')
-rw-r--r--pyload/webui/app/api.py2
-rw-r--r--pyload/webui/app/json.py2
-rw-r--r--pyload/webui/app/pyload.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/pyload/webui/app/api.py b/pyload/webui/app/api.py
index 9726902fb..1ee4b1608 100644
--- a/pyload/webui/app/api.py
+++ b/pyload/webui/app/api.py
@@ -6,7 +6,7 @@ from traceback import format_exc, print_exc
from bottle import route, request, response, HTTPError
-from utils import toDict, set_session
+from pyload.utils import toDict, set_session
from pyload.webui import PYLOAD
from pyload.utils import json
diff --git a/pyload/webui/app/json.py b/pyload/webui/app/json.py
index 096f72ab5..c347c25e3 100644
--- a/pyload/webui/app/json.py
+++ b/pyload/webui/app/json.py
@@ -8,7 +8,7 @@ from bottle import route, request, HTTPError
from pyload.webui import PYLOAD
-from utils import login_required, render_to_response, toDict
+from pyload.utils import login_required, render_to_response, toDict
from pyload.utils import decode, formatSize
diff --git a/pyload/webui/app/pyload.py b/pyload/webui/app/pyload.py
index c5c6c80cd..ccd2c30f0 100644
--- a/pyload/webui/app/pyload.py
+++ b/pyload/webui/app/pyload.py
@@ -16,7 +16,7 @@ from bottle import route, static_file, request, response, redirect, error
from pyload.webui import PYLOAD, PYLOAD_DIR, THEME_DIR, SETUP, env
-from utils import render_to_response, parse_permissions, parse_userdata, \
+from pyload.utils import render_to_response, parse_permissions, parse_userdata, \
login_required, get_permission, set_permission, permlist, toDict, set_session
from pyload.webui.filters import relpath, unquotepath