Ticket #6980: 6980.diff

File 6980.diff, 1.2 KB (added by Jeff Anderson, 16 years ago)

Combined sections as suggested

  • docs/django-admin.txt

    diff --git a/docs/django-admin.txt b/docs/django-admin.txt
    index e79c105..f20ef24 100644
    a b Example usage::  
    392392--noreload
    393393~~~~~~~~~~
    394394
    395 Use the ``--noreload`` option to disable the use of the auto-reloader. This
    396 means any Python code changes you make while the server is running will *not*
    397 take effect if the particular Python modules have already been loaded into
    398 memory.
     395To disable auto-reloading of code while the development server is running, use the
     396``--noreload`` option, like so::
     397
     398    django-admin.py runserver --noreload
     399
     400This means any Python code changes you make while the server is running will
     401*not* take effect if the particular Python modules have already been loaded
     402into memory.
    399403
    400404Examples of using different ports and addresses
    401405~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    documentation.  
    426430
    427431.. _serving static files: ../static_files/
    428432
    429 Turning off auto-reload
    430 ~~~~~~~~~~~~~~~~~~~~~~~
    431 
    432 To disable auto-reloading of code while the development server is running, use the
    433 ``--noreload`` option, like so::
    434 
    435     django-admin.py runserver --noreload
    436 
    437433shell
    438434-----
    439435
Back to Top