Commit 1d8e6eae authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #10463 -- Corrected a problem with the MySQL backend, introduced by [10026].

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10030 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 5fb66670
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -232,8 +232,8 @@ class DatabaseWrapper(BaseDatabaseWrapper):
        'iendswith': 'LIKE %s',
    }

    def __init__(self, **kwargs):
        super(DatabaseWrapper, self).__init__(**kwargs)
    def __init__(self, *args, **kwargs):
        super(DatabaseWrapper, self).__init__(*args, **kwargs)

        self.server_version = None
        self.features = DatabaseFeatures()