From d9b5fa5b16a324aaff948814de22bcd498b7101d Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Thu, 10 Sep 2026 12:15:59 +0200 Subject: [PATCH] Fix incomplete warning message --- src/pretix/helpers/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/helpers/urls.py b/src/pretix/helpers/urls.py index bb586f2d2b..b509c5ce62 100644 --- a/src/pretix/helpers/urls.py +++ b/src/pretix/helpers/urls.py @@ -29,7 +29,7 @@ from django.urls import reverse def build_absolute_uri(urlname, args=None, kwargs=None): warnings.warn( 'Usage of build_absolute_uri is confusing since there are many functions with that name. ' - 'Replace this usage with ', + 'Replace this usage with mainreverse_absolute.', DeprecationWarning ) return mainreverse_absolute(urlname, args, kwargs)