url => re_path

This commit is contained in:
Johannes Wilm 2022-07-16 23:30:56 +02:00
parent dab8741bed
commit c27a4d1794

View file

@ -1,6 +1,6 @@
from django.conf.urls import include, url
from django.urls import include, re_path
urlpatterns = [
url(r"^avatar/", include("avatar.urls")),
re_path(r"^avatar/", include("avatar.urls")),
]