diff options
| author | René Fleschenberg <rene@fleschenberg.net> | 2017-05-30 23:15:20 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-05-30 17:16:10 -0400 |
| commit | ceb6a64f2f5d8e4a5309d9558f89a6d1f0b6308d (patch) | |
| tree | d28c23e7e6f96d06571f6be65810be7ebecba553 | |
| parent | 48274c15893a6d4dd0700e24c3636cf56333c593 (diff) | |
[1.11.x] Refs #26294 -- Fixed typo in docs/ref/django-admin.txt.
Backport of a30482a4b6e5d13e7325238fdc902fbca7e714f4 from master
| -rw-r--r-- | docs/ref/django-admin.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index 9e3f6177e4..852ebf424a 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -1778,7 +1778,7 @@ To call a management command from code use ``call_command``. ``*args`` a list of arguments accepted by the command. Arguments are passed to the argument parser, so you can use the same style as you would on the command - line. For example, ``call_command('flush', 'verbosity=0')``. + line. For example, ``call_command('flush', '--verbosity=0')``. ``**options`` named options accepted on the command-line. Options are passed to the command |
