summaryrefslogtreecommitdiff
path: root/source4/scripting/python/samba/schema.py
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2011-11-11 16:34:48 +0100
committerStefan Metzmacher <metze@samba.org>2011-11-15 09:46:26 +0100
commite6a9e1dda920d83c2926061e331d52aa9e9d0871 (patch)
tree7e9020cad9b774945fc1d03e5d887757f22b97c8 /source4/scripting/python/samba/schema.py
parent18eba021e7b7e0b9a6fb228c80bee639965dab33 (diff)
downloadsamba-e6a9e1dda920d83c2926061e331d52aa9e9d0871.tar.gz
samba-e6a9e1dda920d83c2926061e331d52aa9e9d0871.tar.bz2
samba-e6a9e1dda920d83c2926061e331d52aa9e9d0871.zip
s4:dsdb/pydsdb: pass down schema_dn to _dsdb_set_schema_from_ldif()
metze
Diffstat (limited to 'source4/scripting/python/samba/schema.py')
-rw-r--r--source4/scripting/python/samba/schema.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/python/samba/schema.py b/source4/scripting/python/samba/schema.py
index 216cb0ff27..9cbfa3a8e8 100644
--- a/source4/scripting/python/samba/schema.py
+++ b/source4/scripting/python/samba/schema.py
@@ -120,7 +120,7 @@ class Schema(object):
self.set_from_ldif(prefixmap_ldif, self.schema_data, self.schemadn)
def set_from_ldif(self, pf, df, dn):
- dsdb._dsdb_set_schema_from_ldif(self.ldb, pf, df)
+ dsdb._dsdb_set_schema_from_ldif(self.ldb, pf, df, dn)
def write_to_tmp_ldb(self, schemadb_path):
self.ldb.connect(url=schemadb_path)