remove code from ldapdb.__init__
[matthijs/upstream/django-ldapdb.git] / ldapdb / backends / ldap / base.py
index 1b21647ebe97e2a7f64a5299748f08fd98fc8188..1edb07de59996ddf51d9eae542e37846d975a0af 100644 (file)
@@ -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)