Skip to content

Commit

Permalink
[1.11.x] Fixed #29017 -- Updated BaseCommand.leave_locale_alone doc p…
Browse files Browse the repository at this point in the history
…er refs #24073.

Backport of b9cec9f from master
  • Loading branch information
timgraham committed Jan 12, 2018
1 parent bb39e4b commit ced0b1e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/howto/custom-management-commands.txt
Expand Up @@ -259,17 +259,17 @@ All attributes can be set in your derived class and can be used in
.. attribute:: BaseCommand.leave_locale_alone

A boolean indicating whether the locale set in settings should be preserved
during the execution of the command instead of being forcibly set to 'en-us'.
during the execution of the command instead of translations being
deactivated.

Default value is ``False``.

Make sure you know what you are doing if you decide to change the value of
this option in your custom command if it creates database content that
is locale-sensitive and such content shouldn't contain any translations
(like it happens e.g. with :mod:`django.contrib.auth` permissions) as
making the locale differ from the de facto default 'en-us' might cause
unintended effects. See the `Management commands and locales`_ section
above for further details.
activating any locale might cause unintended effects. See the `Management
commands and locales`_ section above for further details.

.. attribute:: BaseCommand.style

Expand Down

0 comments on commit ced0b1e

Please sign in to comment.