Skip to content

Commit

Permalink
include() not needed in admin site url conf
Browse files Browse the repository at this point in the history
Error was:
Cannot override the namespace for a dynamic module that provides a namespace.
  • Loading branch information
ilesoft committed Nov 22, 2024
1 parent 4b7d9d9 commit 3d6baba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

urlpatterns = [
url(r"^kipa/", include("tupa.urls")),
url(r"^admin/", include(admin.site.urls)),
url(r"^admin/", admin.site.urls),
]

if settings.SERVE_MEDIA:
Expand Down

0 comments on commit 3d6baba

Please sign in to comment.