From 49beb3ac08e1e5c954c0d21ed1a63060cbab236b Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sun, 21 Sep 2014 18:42:51 +0200 Subject: =?UTF-8?q?Don=E2=80=99t=20set=20the=20wait=20time=20to=20True=20i?= =?UTF-8?q?nstead=20of=20leaving=20its=20float=20default,=20in=20examples.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/send_client.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'examples/send_client.py') diff --git a/examples/send_client.py b/examples/send_client.py index a3b11707..6e3e5865 100755 --- a/examples/send_client.py +++ b/examples/send_client.py @@ -58,9 +58,7 @@ class SendMsgBot(slixmpp.ClientXMPP): mbody=self.msg, mtype='chat') - # Using wait=True ensures that the send queue will be - # emptied before ending the session. - self.disconnect(wait=True) + self.disconnect() if __name__ == '__main__': -- cgit v1.2.3