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