diff options
| author | Daniel Musketa <daniel@musketa.de> | 2019-05-06 15:39:48 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-05-07 11:17:24 +0200 |
| commit | 59de9494e7513de29bc71bd0b27445daff25a4b3 (patch) | |
| tree | 3ef328e8c75acccc07532cd7faacf081c70fe5d3 /docs | |
| parent | 4043dc69cd41d100f201e4c71b1515db341fbd45 (diff) | |
Fixed typo in docs/ref/django-admin.txt.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/django-admin.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index c66d1867d0..69e00b0428 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -1940,5 +1940,5 @@ 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('/path/to/command_output') as f: + with open('/path/to/command_output', 'w') as f: management.call_command('dumpdata', stdout=f) |
