diff --git a/lib/utils/api.py b/lib/utils/api.py index 0fcaad0fc..1d33524f8 100644 --- a/lib/utils/api.py +++ b/lib/utils/api.py @@ -26,16 +26,16 @@ except (ImportError, OSError): else: _multiprocessing = multiprocessing -from extra.bottle.bottle import abort -from extra.bottle.bottle import error -from extra.bottle.bottle import get -from extra.bottle.bottle import hook -from extra.bottle.bottle import post -from extra.bottle.bottle import request -from extra.bottle.bottle import response -from extra.bottle.bottle import run -from extra.bottle.bottle import static_file -from extra.bottle.bottle import template +from thirdparty.bottle.bottle import abort +from thirdparty.bottle.bottle import error +from thirdparty.bottle.bottle import get +from thirdparty.bottle.bottle import hook +from thirdparty.bottle.bottle import post +from thirdparty.bottle.bottle import request +from thirdparty.bottle.bottle import response +from thirdparty.bottle.bottle import run +from thirdparty.bottle.bottle import static_file +from thirdparty.bottle.bottle import template from lib.controller.controller import start from lib.core.common import unArrayizeValue from lib.core.convert import hexencode diff --git a/extra/bottle/__init__.py b/thirdparty/bottle/__init__.py similarity index 100% rename from extra/bottle/__init__.py rename to thirdparty/bottle/__init__.py diff --git a/extra/bottle/bottle.py b/thirdparty/bottle/bottle.py similarity index 100% rename from extra/bottle/bottle.py rename to thirdparty/bottle/bottle.py