make "commit" a no-op
[matthijs/upstream/django-ldapdb.git] / ldapdb / backends / ldap / base.py
index 062f5c0ff0635207f33d9c982715dae4ea71e683..85b857fb8fd4d6d7913ebe2bf9a8577928d122d6 100644 (file)
@@ -61,6 +61,9 @@ class DatabaseWrapper(BaseDatabaseWrapper):
     def close(self):
         pass
 
+    def _commit(self):
+        pass
+
     def _cursor(self):
         if self.connection is None:
             self.connection = ldap.initialize(self.settings_dict['NAME'])