From 6e13c0490d67cdf210411f08feca3b78a49645ea Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Sun, 18 Jan 2015 16:43:57 -0500 Subject: Changed RedirectView.permanent to False per deprecation timeline; refs #21587. --- docs/ref/class-based-views/base.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs') 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 -- cgit v1.3