diff options
| author | tim-mccurrach <34194722+tim-mccurrach@users.noreply.github.com> | 2021-03-22 07:43:56 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-22 08:43:56 +0100 |
| commit | cf2f6fc558166656f29609e3864df9af81067d0c (patch) | |
| tree | 557b769677dacf571987adec66622020f68dc44b /docs | |
| parent | 717b5e633ae7a3f376b897413730002472d14cf0 (diff) | |
Fixed #32576 -- Corrected dumpdata docs for passing model names to the --exclude option.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/django-admin.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index 7252fca57f..40ca4b0334 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -319,9 +319,9 @@ Specifies the number of indentation spaces to use in the output. Defaults to .. django-admin-option:: --exclude EXCLUDE, -e EXCLUDE Prevents specific applications or models (specified in the form of -``app_label.ModelName``) from being dumped. If you specify a model name, the -output will be restricted to that model, rather than the entire application. -You can also mix application names and model names. +``app_label.ModelName``) from being dumped. If you specify a model name, then +only that model will be excluded, rather than the entire application. You can +also mix application names and model names. If you want to exclude multiple applications, pass ``--exclude`` more than once:: |
