aboutsummaryrefslogtreecommitdiff
path: root/newspipe/lib/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/lib/utils.py')
-rw-r--r--newspipe/lib/utils.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/newspipe/lib/utils.py b/newspipe/lib/utils.py
index 0ac0a28b..eb20ff4b 100644
--- a/newspipe/lib/utils.py
+++ b/newspipe/lib/utils.py
@@ -14,6 +14,7 @@ logger = logging.getLogger(__name__)
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 application.config and "PREFIX" in application.config:
_uf = str(application.config("PREFIX")) + _uf
bgstack15