diff options
| author | Tim Graham <timograham@gmail.com> | 2015-01-18 16:43:57 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-01-18 17:43:06 -0500 |
| commit | 6e13c0490d67cdf210411f08feca3b78a49645ea (patch) | |
| tree | 5d9bc14688364af1d58ca38b6ac6e5877481f6a1 /docs | |
| parent | bd98926f0eb19d27821a8a7679b42ff46e53e4da (diff) | |
Changed RedirectView.permanent to False per deprecation timeline; refs #21587.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/class-based-views/base.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/ref/class-based-views/base.txt b/docs/ref/class-based-views/base.txt index 2c90cd4893..0b59989535 100644 --- a/docs/ref/class-based-views/base.txt +++ b/docs/ref/class-based-views/base.txt @@ -225,12 +225,12 @@ RedirectView Whether the redirect should be permanent. The only difference here is the HTTP status code returned. If ``True``, then the redirect will use status code 301. If ``False``, then the redirect will use status code - 302. By default, ``permanent`` is ``True``. + 302. By default, ``permanent`` is ``False``. - .. deprecated:: 1.8 + .. versionchanged:: 1.9 - The default value of the ``permanent`` attribute will change from - ``True`` to ``False`` in Django 1.9. + The default value of the ``permanent`` attribute changed from + ``True`` to ``False``. .. attribute:: query_string |
