summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2014-04-29 09:34:48 +0200
committerKarolin Seeger <kseeger@samba.org>2014-07-15 12:46:14 +0200
commitd2615ee6168ecb6b76e503a0a83053dbef6cc3c9 (patch)
treea898dea0cb0e3216bf6b4e21fc00f9b77aa79c51 /lib
parent1ac7ee60fb1361623bfdeadc53b2e5130d0c04a9 (diff)
downloadsamba-d2615ee6168ecb6b76e503a0a83053dbef6cc3c9.tar.gz
ldb:pyldb: fix doc string for set_extended_component()
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Jelmer Vernooij <jelmer@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> (cherry picked from commit 094c39107c0abf4951e6f7012ac06b08cae1ea04)
Diffstat (limited to 'lib')
-rw-r--r--lib/ldb/pyldb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ldb/pyldb.c b/lib/ldb/pyldb.c
index 29e99b4a70..867fed4343 100644
--- a/lib/ldb/pyldb.c
+++ b/lib/ldb/pyldb.c
@@ -601,7 +601,7 @@ static PyMethodDef py_ldb_dn_methods[] = {
"S.get_extended_component(name) -> string\n\n"
"returns a DN extended component as a binary string"},
{ "set_extended_component", (PyCFunction)py_ldb_dn_set_extended_component, METH_VARARGS,
- "S.set_extended_component(name, value) -> string\n\n"
+ "S.set_extended_component(name, value) -> None\n\n"
"set a DN extended component as a binary string"},
{ NULL }
};