diff options
| author | Tim Graham <timograham@gmail.com> | 2015-01-17 20:14:45 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-01-17 20:14:45 -0500 |
| commit | 1d975ff44bc23efaf0ebf3e96cc35539d80bd244 (patch) | |
| tree | f75630a7eee870d548a8f711176df865a5cfe31f /docs/ref/django-admin.txt | |
| parent | 8d959f73bed135c1253c0d957355b60fce4091e9 (diff) | |
Removed usage of deprecated dumpdata options in docs.
Diffstat (limited to 'docs/ref/django-admin.txt')
| -rw-r--r-- | docs/ref/django-admin.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index 558afe3c2b..3a8f9b2c55 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -1737,14 +1737,14 @@ with ``True`` or ``False``, as you can see with the ``interactive`` option above Named arguments can be passed by using either one of the following syntaxes:: # Similar to the command line - management.call_command('dumpdata', '--natural') + management.call_command('dumpdata', '--natural-foreign') # Named argument similar to the command line minus the initial dashes and # with internal dashes replaced by underscores - management.call_command('dumpdata', natural=True) + management.call_command('dumpdata', natural_foreign=True) - # `use_natural_keys` is the option destination variable - management.call_command('dumpdata', use_natural_keys=True) + # `use_natural_foreign_keys` is the option destination variable + management.call_command('dumpdata', use_natural_foreign_keys=True) .. versionchanged:: 1.8 |
