diff --git a/docs/releases/1.7.txt b/docs/releases/1.7.txt
index 50be55c..08ea56b 100644
a
|
b
|
script with::
|
1020 | 1020 | |
1021 | 1021 | Otherwise, you will hit an ``AppRegistryNotReady`` exception. |
1022 | 1022 | |
| 1023 | WSGI scripts |
| 1024 | ~~~~~~~~~~~~ |
| 1025 | |
| 1026 | Until Django 1.3, the recommended way to create a WSGI application was:: |
| 1027 | |
| 1028 | import django.core.handlers.wsgi |
| 1029 | application = django.core.handlers.wsgi.WSGIHandler() |
| 1030 | |
| 1031 | In Django 1.4, support for WSGI was improved and the API changed to:: |
| 1032 | |
| 1033 | from django.core.wsgi import get_wsgi_application |
| 1034 | application = get_wsgi_application() |
| 1035 | |
| 1036 | If you're still using the former style in your WSGI script, you need to |
| 1037 | upgrade to the latter, or you will hit an ``AppRegistryNotReady`` exception. |
| 1038 | |
1023 | 1039 | App registry consistency |
1024 | 1040 | ^^^^^^^^^^^^^^^^^^^^^^^^ |
1025 | 1041 | |