diff options
| author | Stephane Angel (Twidi) <s.angel@twidi.com> | 2015-11-21 14:37:52 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-11-23 07:50:31 -0500 |
| commit | 8957dfe4ad76b74744abdbde605d06fb565a55e3 (patch) | |
| tree | 97302b1a9017154ee5a01929014b912f36d659fe | |
| parent | eb7a329fb65e93dcd6c773c167353af9825d7b6e (diff) | |
[1.9.x] Corrected doc'd differences between django-admin and manage.py.
Backport of 8091e8c5c61fb0a6bd15e92bea1f9fdfa21c047f from master
| -rw-r--r-- | docs/ref/django-admin.txt | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index 75f5816120..7ae214c5b9 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -6,16 +6,14 @@ django-admin and manage.py This document outlines all it can do. In addition, ``manage.py`` is automatically created in each Django project. -``manage.py`` is a thin wrapper around ``django-admin`` that takes care of -several things for you before delegating to ``django-admin``: +``manage.py`` does the same thing as ``django-admin`` but takes care of a few +things for you: * It puts your project's package on ``sys.path``. * It sets the :envvar:`DJANGO_SETTINGS_MODULE` environment variable so that it points to your project's ``settings.py`` file. -* It calls :func:`django.setup()` to initialize various internals of Django. - The ``django-admin`` script should be on your system path if you installed Django via its ``setup.py`` utility. If it's not on your path, you can find it in ``site-packages/django/bin`` within your Python installation. Consider |
