summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-04-26 14:52:40 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-04-26 14:52:40 +0000
commitbf89e4b15113cb14840948d922602b1ab553f68f (patch)
tree1c5b2393b32bea4ae43e2edb05009744873ca801 /docs
parent2944320ebafdef292eea524789c6d3021c12569f (diff)
Added note about Django development version to docs/authentication.txt change from [5073]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5094 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/authentication.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/authentication.txt b/docs/authentication.txt
index 14ca581877..091a30a895 100644
--- a/docs/authentication.txt
+++ b/docs/authentication.txt
@@ -208,7 +208,8 @@ Hashtype is either ``sha1`` (default), ``md5`` or ``crypt`` -- the algorithm
used to perform a one-way hash of the password. Salt is a random string used
to salt the raw password to create the hash. Note that the ``crypt`` method is
only supported on platforms that have the standard Python ``crypt`` module
-available.
+available, and ``crypt`` support is only available in the Django development
+version.
For example::