Author: ramiro
Date: 2011-04-06 04:19:37 -0700 (Wed, 06 Apr 2011)
New Revision: 16021
Modified:
django/trunk/django/contrib/gis/db/backends/mysql/base.py
Log:
Fixed #15772 -- Corrected an oversight from r16016 in MySQL GeoDjango DB
backend. Thanks JannKleen for the report and patch.
Modified: django/trunk/django/contrib/gis/db/backends/mysql/base.py
===================================================================
--- django/trunk/django/contrib/gis/db/backends/mysql/base.py 2011-04-06
10:33:32 UTC (rev 16020)
+++ django/trunk/django/contrib/gis/db/backends/mysql/base.py 2011-04-06
11:19:37 UTC (rev 16021)
@@ -9,5 +9,5 @@
def __init__(self, *args, **kwargs):
super(DatabaseWrapper, self).__init__(*args, **kwargs)
self.creation = MySQLCreation(self)
- self.ops = MySQLOperations()
+ self.ops = MySQLOperations(self)
self.introspection = MySQLIntrospection(self)
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en.