summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-02-06 17:44:34 +1100
committerAndrew Bartlett <abartlet@samba.org>2012-02-08 16:29:43 +1100
commit76021cc6264f1b33470ee2550bd408735686dc53 (patch)
tree66d4d81d8aa327f9c88cb0da80c14da7836d1495 /source4
parentff5a337483cd9f212fa0fd0931b3fa12797f55f8 (diff)
downloadsamba-76021cc6264f1b33470ee2550bd408735686dc53.tar.gz
samba-76021cc6264f1b33470ee2550bd408735686dc53.tar.bz2
samba-76021cc6264f1b33470ee2550bd408735686dc53.zip
s4-messaging: fix pymessaging docstring
Diffstat (limited to 'source4')
-rw-r--r--source4/lib/messaging/pymessaging.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source4/lib/messaging/pymessaging.c b/source4/lib/messaging/pymessaging.c
index d9ad3790f9..e8ef4a800b 100644
--- a/source4/lib/messaging/pymessaging.c
+++ b/source4/lib/messaging/pymessaging.c
@@ -250,9 +250,8 @@ PyTypeObject imessaging_Type = {
.tp_dealloc = py_imessaging_dealloc,
.tp_methods = py_imessaging_methods,
.tp_getset = py_imessaging_getset,
- .tp_doc = "Messaging(own_id=None, imessaging_path=None)\n" \
- "Create a new object that can be used to communicate with the peers in the specified messaging path.\n" \
- "If no path is specified, the default path from smb.conf will be used."
+ .tp_doc = "Messaging(own_id=None)\n" \
+ "Create a new object that can be used to communicate with the peers in the specified messaging path.\n"
};
void initmessaging(void)