summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2008-06-16 03:37:57 +0000
committerAdrian Holovaty <adrian@holovaty.com>2008-06-16 03:37:57 +0000
commit1b92483ae5e4ebd93ba8616fb1b7cb55fc63868b (patch)
treeeee42de3179ca39d80ccf6e34400386a47ad7253 /docs
parent167409e24ee946aa2b06b88d3dfbe2327989831c (diff)
Fixed #6980 -- Removed duplicate stuff in docs/django-admin.txt. Thanks, Evan Jones
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7648 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/django-admin.txt12
1 files changed, 4 insertions, 8 deletions
diff --git a/docs/django-admin.txt b/docs/django-admin.txt
index 1d4dbf10be..8797d2e988 100644
--- a/docs/django-admin.txt
+++ b/docs/django-admin.txt
@@ -438,6 +438,10 @@ means any Python code changes you make while the server is running will *not*
take effect if the particular Python modules have already been loaded into
memory.
+Example usage::
+
+ django-admin.py runserver --noreload
+
Examples of using different ports and addresses
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -467,14 +471,6 @@ documentation.
.. _serving static files: ../static_files/
-Turning off auto-reload
-~~~~~~~~~~~~~~~~~~~~~~~
-
-To disable auto-reloading of code while the development server is running, use the
-``--noreload`` option, like so::
-
- django-admin.py runserver --noreload
-
shell
-----