[mailman3] Fix the urls.py error

This is fixing the error `django.core.exceptions.ImproperlyConfigured: Passing a 3-tuple to include() is not supported. Pass a 2-tuple containing the list of patterns and app_name, and provide the namespace argument to include() instead.`

Signed-off-by: Michal Konecny <mkonecny@redhat.com>
This commit is contained in:
Michal Konecny 2024-03-27 16:36:16 +01:00
parent a47cab5804
commit 143243ef45

View file

@ -12,5 +12,5 @@ urlpatterns = [
re_path(r'^archives/', include('hyperkitty.urls')),
re_path(r'', include('django_mailman3.urls')),
re_path(r'^accounts/', include('allauth.urls')),
re_path(r'^django-admin/', include(admin.site.urls)),
re_path(r'^django-admin/', admin.site.urls),
]