aboutsummaryrefslogtreecommitdiff
path: root/newspipe/web/views/icon.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/web/views/icon.py')
-rw-r--r--newspipe/web/views/icon.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/newspipe/web/views/icon.py b/newspipe/web/views/icon.py
index e1de6402..4cdcd4b0 100644
--- a/newspipe/web/views/icon.py
+++ b/newspipe/web/views/icon.py
@@ -1,7 +1,8 @@
import base64
from flask import Blueprint, Response, request
-from web.controllers import IconController
-from web.lib.view_utils import etag_match
+
+from newspipe.controllers import IconController
+from newspipe.web.lib.view_utils import etag_match
icon_bp = Blueprint("icon", __name__, url_prefix="/icon")
bgstack15