diff options
| author | Carl Meyer <carl@oddbird.net> | 2011-10-28 16:22:51 +0000 |
|---|---|---|
| committer | Carl Meyer <carl@oddbird.net> | 2011-10-28 16:22:51 +0000 |
| commit | 11861a29d51fb73ec2647398b306452948587cc5 (patch) | |
| tree | 81d6073d70e1ca8d0ba36abae41daaf27bc9d896 /docs | |
| parent | 7a718f0f3a9d08b2f8159cdb8b665e5b84cab83e (diff) | |
Fixed #17130 -- Corrected import path of get_wsgi_application in deployment docs. Thanks jsdalton for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17047 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/howto/deployment/wsgi/index.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/howto/deployment/wsgi/index.txt b/docs/howto/deployment/wsgi/index.txt index c666aafac0..ecb302cee3 100644 --- a/docs/howto/deployment/wsgi/index.txt +++ b/docs/howto/deployment/wsgi/index.txt @@ -50,7 +50,7 @@ Initially this file contains:: # This application object is used by the development server # as well as any WSGI server configured to use this file. - from django.core.handlers.wsgi import get_wsgi_application + from django.core.wsgi import get_wsgi_application application = get_wsgi_application() The ``os.environ.setdefault`` line just sets the default settings module to |
