diff options
| author | Ramiro Morales <cramm0@gmail.com> | 2011-04-06 11:19:37 +0000 |
|---|---|---|
| committer | Ramiro Morales <cramm0@gmail.com> | 2011-04-06 11:19:37 +0000 |
| commit | b7715b4ae68be211749520e60c63d251ccf14bc1 (patch) | |
| tree | 2faf7ddd8876547ebcc9654defd36cedf05ee9a8 | |
| parent | 91e59aeca0d4a554c418629999d1d9e758912c5c (diff) | |
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
| -rw-r--r-- | django/contrib/gis/db/backends/mysql/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/gis/db/backends/mysql/base.py b/django/contrib/gis/db/backends/mysql/base.py index 7f0fc4815b..7d944587ba 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) |
