diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt
index e0b0845..a5ed37f 100644
|
a
|
b
|
Examples::
|
| 1469 | 1469 | from django.core import management |
| 1470 | 1470 | management.call_command('flush', verbosity=0, interactive=False) |
| 1471 | 1471 | management.call_command('loaddata', 'test_data', verbosity=0) |
| | 1472 | |
| | 1473 | Output redirection |
| | 1474 | ================== |
| | 1475 | |
| | 1476 | Note that you can redirect standard output and error streams as all commands |
| | 1477 | support the ``stdout`` and ``stderr`` options. For example, you could write:: |
| | 1478 | |
| | 1479 | with open('/tmp/command_output') as f: |
| | 1480 | management.call_command('dumpdata', stdout=f) |