From b7715b4ae68be211749520e60c63d251ccf14bc1 Mon Sep 17 00:00:00 2001 From: Ramiro Morales Date: Wed, 6 Apr 2011 11:19:37 +0000 Subject: [PATCH] Fixed #15772 -- Corrected an oversight from r16016 in MySQL GeoDjango DB backend. Thanks JannKleen for the report and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16021 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/gis/db/backends/mysql/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/gis/db/backends/mysql/base.py b/django/contrib/gis/db/backends/mysql/base.py index 7f0fc4815b7..7d944587baa 100644 --- a/django/contrib/gis/db/backends/mysql/base.py +++ b/django/contrib/gis/db/backends/mysql/base.py @@ -9,5 +9,5 @@ class DatabaseWrapper(MySQLDatabaseWrapper): 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)