diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-02-06 17:44:34 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-02-08 16:29:43 +1100 |
commit | 76021cc6264f1b33470ee2550bd408735686dc53 (patch) | |
tree | 66d4d81d8aa327f9c88cb0da80c14da7836d1495 /source4/lib/messaging | |
parent | ff5a337483cd9f212fa0fd0931b3fa12797f55f8 (diff) | |
download | samba-76021cc6264f1b33470ee2550bd408735686dc53.tar.gz samba-76021cc6264f1b33470ee2550bd408735686dc53.tar.bz2 samba-76021cc6264f1b33470ee2550bd408735686dc53.zip |
s4-messaging: fix pymessaging docstring
Diffstat (limited to 'source4/lib/messaging')
-rw-r--r-- | source4/lib/messaging/pymessaging.c | 5 |
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) |