Commit 9f592ecc authored by Luke Plant's avatar Luke Plant
Browse files

Fixed #12964 - wrong path for CSRF decorators in upgrading notes.



git-svn-id: http://code.djangoproject.com/svn/django/trunk@12618 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 9fab1467
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -178,9 +178,9 @@ continue to work for now, but they are deprecated and will be removed in Django
django.contrib.csrf.middleware.CsrfMiddleware           django.middleware.csrf.CsrfMiddleware
django.contrib.csrf.middleware.CsrfViewMiddleware       django.middleware.csrf.CsrfViewMiddleware
django.contrib.csrf.middleware.CsrfResponseMiddleware   django.middleware.csrf.CsrfResponseMiddleware
django.contrib.csrf.middleware.csrf_exempt              django.views.decorators.csrf_exempt
django.contrib.csrf.middleware.csrf_view_exempt         django.views.decorators.csrf_view_exempt
django.contrib.csrf.middleware.csrf_response_exempt     django.views.decorators.csrf_response_exempt
django.contrib.csrf.middleware.csrf_exempt              django.views.decorators.csrf.csrf_exempt
django.contrib.csrf.middleware.csrf_view_exempt         django.views.decorators.csrf.csrf_view_exempt
django.contrib.csrf.middleware.csrf_response_exempt     django.views.decorators.csrf.csrf_response_exempt
======================================================  ==============================================

You should update any imports, and also the paths in your