Ticket #15772: 15772.diff
File 15772.diff, 552 bytes (added by , 14 years ago) |
---|
-
django/contrib/gis/db/backends/mysql/base.py
9 9 def __init__(self, *args, **kwargs): 10 10 super(DatabaseWrapper, self).__init__(*args, **kwargs) 11 11 self.creation = MySQLCreation(self) 12 self.ops = MySQLOperations( )12 self.ops = MySQLOperations(self) 13 13 self.introspection = MySQLIntrospection(self)