summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-05-19 08:22:46 -0400
committerTim Graham <timograham@gmail.com>2014-05-19 08:22:46 -0400
commit5abc811a40dbeee092b9f50055d229e9c24274fa (patch)
tree5825f6ff9b917c16a44c25769c3eaa1d9ab1ae36 /docs/topics
parenta1f0c4c697e8d848ce43ad8ce346a058f288db19 (diff)
Revert "Fixed #20477: Allowed settings.FORMAT_MODULE_PATH to be a list of modules."
This reverts commit 950b6de16ac2f8135612f2ed5984c090dd8e4dcf.
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/i18n/formatting.txt17
1 files changed, 4 insertions, 13 deletions
diff --git a/docs/topics/i18n/formatting.txt b/docs/topics/i18n/formatting.txt
index 94b2eed8ee..04b36e2767 100644
--- a/docs/topics/i18n/formatting.txt
+++ b/docs/topics/i18n/formatting.txt
@@ -154,20 +154,11 @@ Django provides format definitions for many locales, but sometimes you might
want to create your own, because a format files doesn't exist for your locale,
or because you want to overwrite some of the values.
+To use custom formats, specify the path where you'll place format files first.
+To do that, just set your :setting:`FORMAT_MODULE_PATH` setting to the package
+where format files will exist, for instance::
-.. versionchanged:: 1.8
-
- The ability to specify FORMAT_MODULE_PATH as a list was added. Previously,
- only a single string value was supported.
-
-To use custom formats, specify the path where you'll place format files
-first. To do that, just set your :setting:`FORMAT_MODULE_PATH` setting to
-the package where format files will exist, for instance::
-
- FORMAT_MODULE_PATH = [
- 'mysite.formats',
- 'some_app.formats',
- ]
+ FORMAT_MODULE_PATH = 'mysite.formats'
Files are not placed directly in this directory, but in a directory named as
the locale, and must be named ``formats.py``.