diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt
index e0b0845..f942b23 100644
a
|
b
|
a natural key definition. If you are dumping ``contrib.auth`` ``Permission``
|
212 | 212 | objects or ``contrib.contenttypes`` ``ContentType`` objects, you should |
213 | 213 | probably be using this flag. |
214 | 214 | |
| 215 | Also, ``dumpdata`` command support saving output to named file. You can do |
| 216 | it through calling function ``'django.core.management.call_command'``:: |
| 217 | |
| 218 | from django.core import management |
| 219 | |
| 220 | with open('/tmp/dumpdata_command_output') as f: |
| 221 | management.call_command('dumpdata', stdout=f) |
| 222 | |
215 | 223 | flush |
216 | 224 | ----- |
217 | 225 | |