Opened 13 years ago

Closed 13 years ago

#15747 closed Cleanup/optimization (fixed)

django.contrib.gis.db.backend should've been removed in 1.3

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

Description

http://code.djangoproject.com/browser/django/trunk/django/contrib/gis/db/backend/__init__.py reads

warn('The django.contrib.gis.db.backend module was refactored and '

'renamed to django.contrib.gis.db.backends in 1.2. '
'All functionality of SpatialBackend '
'has been moved to the ops attribute of the spatial database '
'backend. A SpatialBackend alias is provided here for '
'backwards-compatibility, but will be removed in 1.3.')

SpatialBackend = connection.ops

Change History (1)

comment:1 by Russell Keith-Magee, 13 years ago

Resolution: fixed
Status: newclosed

In [16012]:

Fixed #15747 -- Removed deprecated contrib.gis.db.backend module. Thanks to jonash for the report.

Note: See TracTickets for help on using tickets.
Back to Top