1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

s4-messaging: fix pymessaging docstring

This commit is contained in:
Andrew Bartlett 2012-02-06 17:44:34 +11:00
parent ff5a337483
commit 76021cc626

View File

@ -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)