Fixed #2689 -- Got 'manage.py diffsettings' working again. Thanks for the patch, Jeong-Min Lee
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3751 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
ecf6a35112
commit
086992c739
|
@ -552,7 +552,7 @@ def diffsettings():
|
|||
# Inspired by Postfix's "postconf -n".
|
||||
from django.conf import settings, global_settings
|
||||
|
||||
user_settings = _module_to_dict(settings)
|
||||
user_settings = _module_to_dict(settings._target)
|
||||
default_settings = _module_to_dict(global_settings)
|
||||
|
||||
output = []
|
||||
|
|
Loading…
Reference in New Issue