Report wrongly-typed settings and abort, as originally planned.

Thanks Claude for the heads up. Refs #12493 and commit 5e08b792.
This commit is contained in:
Ramiro Morales 2013-06-29 18:19:20 -03:00
parent 5e3a6532aa
commit 64cdea68e7
1 changed files with 8 additions and 0 deletions

View File

@ -132,9 +132,17 @@ class Settings(BaseSettings):
% (self.SETTINGS_MODULE, e)
)
tuple_settings = ("INSTALLED_APPS", "TEMPLATE_DIRS")
for setting in dir(mod):
if setting == setting.upper():
setting_value = getattr(mod, setting)
if setting in tuple_settings and \
isinstance(setting_value, six.string_types):
raise ImproperlyConfigured("The %s setting must be a tuple. "
"Please fix your settings." % setting)
setattr(self, setting, setting_value)
if not self.SECRET_KEY: