X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fdjango-ldapdb.git;a=blobdiff_plain;f=ldapdb%2Fbackends%2Fldap%2Fbase.py;h=1edb07de59996ddf51d9eae542e37846d975a0af;hp=1b21647ebe97e2a7f64a5299748f08fd98fc8188;hb=6addd55ab153402a7e5f39c71e3266b8eab54de5;hpb=0cadc34057b757d759d4640bcd9107dc02b96520 diff --git a/ldapdb/backends/ldap/base.py b/ldapdb/backends/ldap/base.py index 1b21647..1edb07d 100644 --- a/ldapdb/backends/ldap/base.py +++ b/ldapdb/backends/ldap/base.py @@ -49,8 +49,8 @@ class DatabaseOperations(BaseDatabaseOperations): return name class DatabaseWrapper(BaseDatabaseWrapper): - def __init__(self, settings_dict, alias='ldap'): - super(DatabaseWrapper, self).__init__(settings_dict, alias=alias) + def __init__(self, *args, **kwargs): + super(DatabaseWrapper, self).__init__(*args, **kwargs) self.charset = "utf-8" self.features = DatabaseFeatures(self)