diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2009-03-02 08:24:14 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2009-03-02 08:24:14 +0000 |
| commit | 00d89f80a52342e3a40ae298155df5b7d1fae7ad (patch) | |
| tree | fb7aaa17bcd43f02284044b93c0032da5acdda32 | |
| parent | dfddf129f07a859f52f04497f6254b675a345f8d (diff) | |
Fixed #10392 -- Fixed an oversight from the refactoring in r9945.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9953 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -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 81787d63d5..425425bc5f 100644 --- a/django/conf/__init__.py +++ b/django/conf/__init__.py @@ -43,7 +43,7 @@ class LazySettings(LazyObject): parameter sets where to retrieve any unspecified values from (its argument must support attribute access (__getattr__)). """ - if self._target != None: + if self._wrapped != None: raise RuntimeError, 'Settings already configured.' holder = UserSettingsHolder(default_settings) for name, value in options.items(): |
