From 94521f50aa765b9187674f4c6876360a0d6f87d8 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Mon, 11 Mar 2013 22:48:03 +0100 Subject: [PATCH] Fixed #20026 -- Typo in Apache auth docs. --- docs/howto/deployment/wsgi/apache-auth.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/howto/deployment/wsgi/apache-auth.txt b/docs/howto/deployment/wsgi/apache-auth.txt index 220645947d..d06e89cd0e 100644 --- a/docs/howto/deployment/wsgi/apache-auth.txt +++ b/docs/howto/deployment/wsgi/apache-auth.txt @@ -69,9 +69,9 @@ application :doc:`that is created by django-admin.py startproject LoadModule auth_basic_module modules/mod_auth_basic.so LoadModule authz_user_module modules/mod_authz_user.so -Finally, edit your WSGI script ``mysite.wsgi`` to tie Apache's -authentication to your site's authentication mechanisms by importing the -check_user function: +Finally, edit your WSGI script ``mysite.wsgi`` to tie Apache's authentication +to your site's authentication mechanisms by importing the ``check_password`` +function: .. code-block:: python