summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-03-29 18:05:03 +0200
committerJelmer Vernooij <jelmer@samba.org>2010-03-29 18:05:29 +0200
commit1ec2b2f7f328abd0111f1dd871a032ea32f5e573 (patch)
treeab13c2d9ea48a3c9dde80c8ce2209ce7b1a5edc1 /source4
parent336cd5a0a3d35b998b67efc975813ccc8482e6ee (diff)
downloadsamba-1ec2b2f7f328abd0111f1dd871a032ea32f5e573.tar.gz
samba-1ec2b2f7f328abd0111f1dd871a032ea32f5e573.tar.bz2
samba-1ec2b2f7f328abd0111f1dd871a032ea32f5e573.zip
ldap.py: Fix syntax error.
Diffstat (limited to 'source4')
-rwxr-xr-xsource4/lib/ldb/tests/python/ldap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/tests/python/ldap.py b/source4/lib/ldb/tests/python/ldap.py
index 8deb1a64e1..4f35ead2de 100755
--- a/source4/lib/ldb/tests/python/ldap.py
+++ b/source4/lib/ldb/tests/python/ldap.py
@@ -79,7 +79,7 @@ class BasicTests(unittest.TestCase):
def find_domain_sid(self):
res = self.ldb.search(base=self.base_dn, expression="(objectClass=*)", scope=SCOPE_BASE)
- return ndr_unpack( security.dom_sid,res[0]["objectSid"][0])
+ return ndr_unpack( security.dom_sid,res[0]["objectSid"][0])
def setUp(self):
self.ldb = ldb