Skip to content

Commit

Permalink
Fixed #10463 -- Corrected a problem with the MySQL backend, introduce…
Browse files Browse the repository at this point in the history
…d by [10026].

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10030 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
freakboy3742 committed Mar 11, 2009
1 parent 5fb6667 commit 1d8e6ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions django/db/backends/mysql/base.py
Expand Up @@ -232,8 +232,8 @@ class DatabaseWrapper(BaseDatabaseWrapper):
'iendswith': 'LIKE %s', 'iendswith': 'LIKE %s',
} }


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


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

0 comments on commit 1d8e6ea

Please sign in to comment.