From 319d55487331172bd85f9712c93d80d58c7238fc Mon Sep 17 00:00:00 2001 From: spookyUnknownUser Date: Thu, 4 Oct 2018 18:36:44 +0200 Subject: [PATCH] Fix docs showing old django url pattern --- docs/index.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.txt b/docs/index.txt index cdc6526..6a17dc5 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(r'^avatar/', include('avatar.urls')), + url('avatar/', include('avatar.urls')), ] 4. Somewhere in your template navigation scheme, link to the change avatar