aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--newspipe/bootstrap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/newspipe/bootstrap.py b/newspipe/bootstrap.py
index 640f2e5f..ebda2a99 100644
--- a/newspipe/bootstrap.py
+++ b/newspipe/bootstrap.py
@@ -119,9 +119,9 @@ application.jinja_env.globals["application"] = application
def utility_processor():
def url_for(endpoint, **values):
""" Custom reverse-proxy support for url_for """
- print(f"DEBUG: generating url_for {endpoint}")
_uf = f_url_for(endpoint, **values)
if prefix:
_uf = str(prefix) + _uf
+ print(f"DEBUG: generating url_for {endpoint}, of {_uf}")
return _uf
return dict(url_for=url_for)
bgstack15