From 59de9494e7513de29bc71bd0b27445daff25a4b3 Mon Sep 17 00:00:00 2001 From: Daniel Musketa Date: Mon, 6 May 2019 15:39:48 +0200 Subject: [PATCH] Fixed typo in docs/ref/django-admin.txt. --- docs/ref/django-admin.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index c66d1867d0e..69e00b04281 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)