Fixed #19115 -- Documented stdout/stderr options for call_command

Thanks d1ffuz0r for helping with the patch.
This commit is contained in:
Claude Paroz 2012-11-07 18:31:14 +01:00
parent 9a09558e9f
commit b1ac329ba9
1 changed files with 9 additions and 0 deletions

View File

@ -1469,3 +1469,12 @@ Examples::
from django.core import management
management.call_command('flush', verbosity=0, interactive=False)
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)