summaryrefslogtreecommitdiff
path: root/source4/lib/messaging/tests
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>2009-11-07 17:57:50 +0100
committerMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>2009-11-07 18:02:05 +0100
commitf6eacfcf1d579242af40820fe284df80c1f2b7bf (patch)
tree755bba895b037c22b38fe74d7dc8efe1adbab1ac /source4/lib/messaging/tests
parent22d9610a1fd7cf2c1421ec3f63e8e78ffdfd790a (diff)
downloadsamba-f6eacfcf1d579242af40820fe284df80c1f2b7bf.tar.gz
samba-f6eacfcf1d579242af40820fe284df80c1f2b7bf.tar.bz2
samba-f6eacfcf1d579242af40820fe284df80c1f2b7bf.zip
s4:lib/messaging - fix up the python bindings
This fixes up the broken "send" method of the python bindings and corrects some other parameter lists in parsing functions (this is only cosmetic). The reason for the bug was a superfluous "|"!
Diffstat (limited to 'source4/lib/messaging/tests')
-rw-r--r--source4/lib/messaging/tests/bindings.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/messaging/tests/bindings.py b/source4/lib/messaging/tests/bindings.py
index c89538ddfa..ead7a83afd 100644
--- a/source4/lib/messaging/tests/bindings.py
+++ b/source4/lib/messaging/tests/bindings.py
@@ -52,6 +52,6 @@ class MessagingTests(TestCase):
client_ctx = self.get_context((0, 2))
msg_pong = client_ctx.register(pong_callback)
- client_ctx.send((0,1), msg_ping, "testing")
- client_ctx.send((0,1), msg_ping, "")
+ client_ctx.send((0, 1), msg_ping, "testing")
+ client_ctx.send((0, 1), msg_ping, "")