aboutsummaryrefslogtreecommitdiff
path: root/newspipe/web/lib/view_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/web/lib/view_utils.py')
-rw-r--r--newspipe/web/lib/view_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/newspipe/web/lib/view_utils.py b/newspipe/web/lib/view_utils.py
index 218ebb4c..c6e722d3 100644
--- a/newspipe/web/lib/view_utils.py
+++ b/newspipe/web/lib/view_utils.py
@@ -1,6 +1,6 @@
from functools import wraps
from flask import request, Response, make_response
-from lib.utils import to_hash
+from newspipe.lib.utils import to_hash
def etag_match(func):
bgstack15