summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2006-11-02 14:30:11 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2006-11-02 14:30:11 +0000
commit7b78fd6f5d07904accdde8a878d0d6a3ebcaed56 (patch)
treef319abf5f920f913573c311c9a17895e1b3f4a6f /docs
parent7f71ae1b8dcbd2c74f53e479577f165e178df93c (diff)
Fixes #2971 -- Fixed inor typo in example in authentication documentation. Thanks, heckj@mac.com.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3961 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/authentication.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/authentication.txt b/docs/authentication.txt
index 2a61ec82b5..08565e13e1 100644
--- a/docs/authentication.txt
+++ b/docs/authentication.txt
@@ -745,7 +745,7 @@ messages are made available in the `template context`_ as the template variable
{% if messages %}
<ul>
{% for message in messages %}
- <li>{{ message.message }}</li>
+ <li>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}