summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené Fleschenberg <rene@fleschenberg.net>2017-05-30 23:15:20 +0200
committerTim Graham <timograham@gmail.com>2017-05-30 17:16:18 -0400
commit4cb51412919a0aacdb26c87d409ab3afaf53ca18 (patch)
tree9be498bec834bbb3afba9a8b6d8fd1e6b72bf9e2
parent1110e6f665e6509197c2ed77915c0b42156522c9 (diff)
[1.10.x] Refs #26294 -- Fixed typo in docs/ref/django-admin.txt.
Backport of a30482a4b6e5d13e7325238fdc902fbca7e714f4 from master
-rw-r--r--docs/ref/django-admin.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt
index cfe4ff4560..b2ed8769d2 100644
--- a/docs/ref/django-admin.txt
+++ b/docs/ref/django-admin.txt
@@ -1781,7 +1781,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