From 51d49efd6cb56d7addd7abb640dc3aa5e10ec5b5 Mon Sep 17 00:00:00 2001 From: raymond-devries <51940365+raymond-devries@users.noreply.github.com> Date: Wed, 18 Sep 2019 00:21:53 -0700 Subject: [PATCH] Update url() to re_path() url() is an alias for re_path() and is likely to be deprecated in a future release. https://docs.djangoproject.com/en/2.2/ref/urls/#url --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d4a6c8d..b32b4ec 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ pip install django-invitations 'invitations', # Append to urls.py -url(r'^invitations/', include('invitations.urls', namespace='invitations')), +re_path(r'^invitations/', include('invitations.urls', namespace='invitations')), # Run migrations