Fixed #18107 -- Replaced a deprecated import path for GeoIP in docs. Thanks jonash for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17902 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Claude Paroz 2012-04-11 21:35:08 +00:00
parent 5a4d7e63ce
commit cbc411571a
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ Example
Assuming you have the GeoIP C library installed, here is an example of its Assuming you have the GeoIP C library installed, here is an example of its
usage:: usage::
>>> from django.contrib.gis.utils import GeoIP >>> from django.contrib.gis.geoip import GeoIP
>>> g = GeoIP() >>> g = GeoIP()
>>> g.country('google.com') >>> g.country('google.com')
{'country_code': 'US', 'country_name': 'United States'} {'country_code': 'US', 'country_name': 'United States'}