[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:
parent
a47cab5804
commit
143243ef45
1 changed files with 1 additions and 1 deletions
|
@ -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),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue