From 1426c2451756572fccaf264ed2b752553b1c7933 Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Sun, 8 Jun 2008 18:38:36 +0000 Subject: [PATCH] Added a note about manage.py createsuperuser requiring django.contrib.auth. Thanks, Alex Gaynor git-svn-id: http://code.djangoproject.com/svn/django/trunk@7599 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/django-admin.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/django-admin.txt b/docs/django-admin.txt index 28d25ec755..5aed3b0816 100644 --- a/docs/django-admin.txt +++ b/docs/django-admin.txt @@ -129,6 +129,11 @@ using the ``--username`` and ``--email`` arguments on the command line; if not supplied, ``createsuperuser`` will prompt for them when running interactively. +This command is only available if Django's `authentication system`_ +(``django.contrib.auth``) is installed. + +.. _authentication system: ../authentication/ + diffsettings ------------