index 79eaf67..660e51c 100644
--- a/docs/authentication.txt
+++ b/docs/authentication.txt
@@ -264,13 +264,20 @@ Creating superusers
 
 ``manage.py syncdb`` prompts you to create a superuser the first time you run
 it after adding ``'django.contrib.auth'`` to your ``INSTALLED_APPS``. But if
-you need to create a superuser after that via the command line, you can use the
-``create_superuser.py`` utility. Just run this command::
+you need to create a superuser after that via the command line, you can use
+``manage.py createsuperuser`` **New in Django development version.**::
+
+    manage.py createsuperuser --username=joe --email=joe@example.com
+
+You will be prompted for a password. Once entered, the user is created. If you
+leave off the ``--usermane`` or the ``--email`` option, It will prompt you for
+those values as well.
+
+The old way of creating a superuser on the command line is still available::
 
     python /path/to/django/contrib/auth/create_superuser.py
 
-Make sure to substitute ``/path/to/`` with the path to the Django codebase on
-your filesystem.
+Where ``/path/to`` is the path to the Django codebase on your filesestem.
 
 Storing additional information about users
 ------------------------------------------
-- 
1.5.4.1

