diff options
| author | Carl Meyer <carl@oddbird.net> | 2012-03-02 17:13:53 +0000 |
|---|---|---|
| committer | Carl Meyer <carl@oddbird.net> | 2012-03-02 17:13:53 +0000 |
| commit | 3ed0b6ed64ff7a69644d1c1eacfb62b0aedadf71 (patch) | |
| tree | d7e5abe78e8ef6738d1ed7ae54664c9dec25037d /docs/ref | |
| parent | fcaf8eae14d0a7f884328bdf0238dd1e2881c681 (diff) | |
Fixed #17799 - Documented that the execute() method of a management command is not suitable for calling the command from code; call_command should be used instead. Thanks kacah222 for the report and claudep for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17629 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/django-admin.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index 40b5ee168f..bd99958fae 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -1490,6 +1490,8 @@ See :doc:`/howto/custom-management-commands` for how to add customized actions. Running management commands from your code ========================================== +.. _call-command: + .. function:: django.core.management.call_command(name, *args, **options) To call a management command from code use ``call_command``. |
