Opened 12 years ago

Closed 12 years ago

Last modified 12 years ago

#18107 closed Cleanup/optimization (fixed)

Usage of deprecated import in GeoIP docs

Reported by: Jonas H. Owned by: nobody
Component: Documentation Version: 1.4
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

>>> from django.contrib.gis.utils import GeoIP

should be

>>> from django.contrib.gis.geoip import GeoIP

in ref/contrib/gis/geoip/

Change History (2)

comment:1 by Claude Paroz, 12 years ago

Resolution: fixed
Status: newclosed

In [17902]:

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

comment:2 by Claude Paroz, 12 years ago

Type: UncategorizedCleanup/optimization
Note: See TracTickets for help on using tickets.
Back to Top