From fdca9e55e805a22fa1c9467f6958d28361f3932f Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Tue, 3 Mar 2009 02:45:15 +0000 Subject: [PATCH] Fixed #10395 -- Fixed more fallout from r9945. (Simultaneously, stop django.contrib.gis using some internal attribute when there's a perfectly good public property available to do the same thing.) git-svn-id: http://code.djangoproject.com/svn/django/trunk@9960 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/gis/utils/geoip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/gis/utils/geoip.py b/django/contrib/gis/utils/geoip.py index 4d163aab9a..8c21ab290a 100644 --- a/django/contrib/gis/utils/geoip.py +++ b/django/contrib/gis/utils/geoip.py @@ -42,7 +42,7 @@ import os, re from ctypes import c_char_p, c_float, c_int, Structure, CDLL, POINTER from ctypes.util import find_library from django.conf import settings -if not settings._target: settings.configure() +if not settings.configured: settings.configure() # Creating the settings dictionary with any settings, if needed. GEOIP_SETTINGS = dict((key, getattr(settings, key))