aboutsummaryrefslogtreecommitdiff
path: root/newspipe/web/views/home.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/web/views/home.py')
-rw-r--r--newspipe/web/views/home.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/newspipe/web/views/home.py b/newspipe/web/views/home.py
index 8a3ee0a0..58320766 100644
--- a/newspipe/web/views/home.py
+++ b/newspipe/web/views/home.py
@@ -9,7 +9,7 @@ from flask import flash
from flask import redirect
from flask import render_template
from flask import request
-from flask import url_for
+from flask import url_for as f_url_for
from flask_babel import get_locale
from flask_babel import gettext
from flask_login import current_user
@@ -21,6 +21,7 @@ from newspipe.controllers import CategoryController
from newspipe.controllers import FeedController
from newspipe.lib import misc_utils
from newspipe.lib.utils import redirect_url
+from newspipe.lib.utils import url_for
from newspipe.web.lib.view_utils import etag_match
from newspipe.web.views.common import jsonify
bgstack15