Another Django4.1+ Update
1 files changed, 2 insertions(+), 2 deletions(-)

M trello_broker/urls.py
M trello_broker/urls.py +2 -2
@@ 1,10 1,10 @@ 
-from django.conf.urls import url
+from django.urls import re_path
 
 from .views import BitBucketPostView
 
 
 urlpatterns = [
-    url(r'^$',
+    re_path(r'^$',
         BitBucketPostView.as_view(),
         name='trello_broker_post'),
 ]