diff options
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/django-admin.txt | 2 | ||||
| -rw-r--r-- | docs/ref/models/fields.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index f4df81d229..24ea5906ae 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -1784,5 +1784,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('/tmp/command_output') as f: + with open('/path/to/command_output') as f: management.call_command('dumpdata', stdout=f) diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt index 033ae14778..6320f20e24 100644 --- a/docs/ref/models/fields.txt +++ b/docs/ref/models/fields.txt @@ -783,7 +783,7 @@ Python file object like this:: from django.core.files import File # Open an existing file using Python's built-in open() - f = open('/tmp/hello.world') + f = open('/path/to/hello.world') myfile = File(f) Or you can construct one from a Python string like this:: |
