Fixed #19115 -- Documented stdout/stderr options for call_command
Thanks d1ffuz0r for helping with the patch.
This commit is contained in:
parent
9a09558e9f
commit
b1ac329ba9
|
@ -1469,3 +1469,12 @@ Examples::
|
||||||
from django.core import management
|
from django.core import management
|
||||||
management.call_command('flush', verbosity=0, interactive=False)
|
management.call_command('flush', verbosity=0, interactive=False)
|
||||||
management.call_command('loaddata', 'test_data', verbosity=0)
|
management.call_command('loaddata', 'test_data', verbosity=0)
|
||||||
|
|
||||||
|
Output redirection
|
||||||
|
==================
|
||||||
|
|
||||||
|
Note that you can redirect standard output and error streams as all commands
|
||||||
|
support the ``stdout`` and ``stderr`` options. For example, you could write::
|
||||||
|
|
||||||
|
with open('/tmp/command_output') as f:
|
||||||
|
management.call_command('dumpdata', stdout=f)
|
||||||
|
|
Loading…
Reference in New Issue