diff options
| author | Tim Schaffer <timshaffer@me.com> | 2014-06-10 22:52:14 +0200 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2014-06-10 23:04:24 +0200 |
| commit | a1c6cd6a167f90fc4dfd76b2a2de87bc617b26e6 (patch) | |
| tree | 3d6f0db87112c591d3c8a16dfdc4a04a4acc2f75 /django/conf/__init__.py | |
| parent | 868ff4e37c1e4cfaf7283496c24f6e711ad66005 (diff) | |
Fixed #22780 -- Checked that LOCALE_PATHS is really a tuple
Diffstat (limited to 'django/conf/__init__.py')
| -rw-r--r-- | django/conf/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/conf/__init__.py b/django/conf/__init__.py index 2a4fae8878..5ad52fea23 100644 --- a/django/conf/__init__.py +++ b/django/conf/__init__.py @@ -98,7 +98,7 @@ class Settings(BaseSettings): % (self.SETTINGS_MODULE, e) ) - tuple_settings = ("INSTALLED_APPS", "TEMPLATE_DIRS") + tuple_settings = ("INSTALLED_APPS", "TEMPLATE_DIRS", "LOCALE_PATHS") self._explicit_settings = set() for setting in dir(mod): if setting.isupper(): |
