Ticket #15772: 15772.diff

File 15772.diff, 552 bytes (added by Jann Kleen, 13 years ago)
  • django/contrib/gis/db/backends/mysql/base.py

     
    99    def __init__(self, *args, **kwargs):
    1010        super(DatabaseWrapper, self).__init__(*args, **kwargs)
    1111        self.creation = MySQLCreation(self)
    12         self.ops = MySQLOperations()
     12        self.ops = MySQLOperations(self)
    1313        self.introspection = MySQLIntrospection(self)
Back to Top