summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJames Bennett <ubernostrum@gmail.com>2008-06-11 04:34:03 +0000
committerJames Bennett <ubernostrum@gmail.com>2008-06-11 04:34:03 +0000
commit5e202f5acf36f33e1b530514ff205536fe1fd62f (patch)
treef6c98a9eb8606afd129cfdca94b89e469bbc24fd /docs
parent88a6fa5a073f2f11423aa6de7d644a1d427330ae (diff)
Fixed #7397: corrected order of command names in docs/django-admin.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7614 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/django-admin.txt32
1 files changed, 16 insertions, 16 deletions
diff --git a/docs/django-admin.txt b/docs/django-admin.txt
index 5aed3b0816..e14737c944 100644
--- a/docs/django-admin.txt
+++ b/docs/django-admin.txt
@@ -93,22 +93,6 @@ backend. See the `cache documentation`_ for more information.
.. _cache documentation: ../cache/
-dbshell
--------
-
-Runs the command-line client for the database engine specified in your
-``DATABASE_ENGINE`` setting, with the connection parameters specified in your
-``DATABASE_USER``, ``DATABASE_PASSWORD``, etc., settings.
-
- * For PostgreSQL, this runs the ``psql`` command-line client.
- * For MySQL, this runs the ``mysql`` command-line client.
- * For SQLite, this runs the ``sqlite3`` command-line client.
-
-This command assumes the programs are on your ``PATH`` so that a simple call to
-the program name (``psql``, ``mysql``, ``sqlite3``) will find the program in
-the right place. There's no way to specify the location of the program
-manually.
-
createsuperuser
---------------
@@ -134,6 +118,22 @@ This command is only available if Django's `authentication system`_
.. _authentication system: ../authentication/
+dbshell
+-------
+
+Runs the command-line client for the database engine specified in your
+``DATABASE_ENGINE`` setting, with the connection parameters specified in your
+``DATABASE_USER``, ``DATABASE_PASSWORD``, etc., settings.
+
+ * For PostgreSQL, this runs the ``psql`` command-line client.
+ * For MySQL, this runs the ``mysql`` command-line client.
+ * For SQLite, this runs the ``sqlite3`` command-line client.
+
+This command assumes the programs are on your ``PATH`` so that a simple call to
+the program name (``psql``, ``mysql``, ``sqlite3``) will find the program in
+the right place. There's no way to specify the location of the program
+manually.
+
diffsettings
------------