From 502d96f81fbefec4f3841695d22a9abe1f16c7b1 Mon Sep 17 00:00:00 2001 From: Johannes Wilm Date: Tue, 9 Aug 2022 21:42:20 +0200 Subject: [PATCH] url() => path() --- docs/index.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.txt b/docs/index.txt index 6a17dc5..1fdf99b 100644 --- a/docs/index.txt +++ b/docs/index.txt @@ -48,7 +48,7 @@ that are required. A minimal integration can work like this: urlpatterns = [ # ... - url('avatar/', include('avatar.urls')), + path('avatar/', include('avatar.urls')), ] 4. Somewhere in your template navigation scheme, link to the change avatar