1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #14264 -- Ensured settings.configure configures logging

Thanks Matt McDonald for the patch.
This commit is contained in:
Claude Paroz
2012-11-10 12:05:58 +01:00
parent 4d817b3887
commit 34162698cc
2 changed files with 19 additions and 1 deletions

View File

@@ -83,6 +83,7 @@ class LazySettings(LazyObject):
for name, value in options.items():
setattr(holder, name, value)
self._wrapped = holder
self._configure_logging()
@property
def configured(self):