diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2009-03-11 11:03:36 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2009-03-11 11:03:36 +0000 |
| commit | 1d8e6eae34974fd9c60e15884d155dd4bc4dfdc0 (patch) | |
| tree | 241ca200a8c6cc8bf2abedd4af82cf03b8aad236 | |
| parent | 5fb66670367501cab7c50bdf81e2600b840162ee (diff) | |
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
| -rw-r--r-- | django/db/backends/mysql/base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/db/backends/mysql/base.py b/django/db/backends/mysql/base.py index 7ac64e44f3..06f477db84 100644 --- a/django/db/backends/mysql/base.py +++ b/django/db/backends/mysql/base.py @@ -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() |
