From 856a826eeadca76b2975f3004c94fb579534d5bf Mon Sep 17 00:00:00 2001 From: Lance Stout Date: Fri, 1 Jun 2012 14:09:14 -0700 Subject: Fix syntax error in line continuation. --- sleekxmpp/xmlstream/xmlstream.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sleekxmpp/xmlstream/xmlstream.py b/sleekxmpp/xmlstream/xmlstream.py index babe2f54..e491cb5a 100644 --- a/sleekxmpp/xmlstream/xmlstream.py +++ b/sleekxmpp/xmlstream/xmlstream.py @@ -1612,7 +1612,7 @@ class XMLStream(object): tries = 0 try: with self.send_lock: - while sent < total and not self.stop.is_set() and + while sent < total and not self.stop.is_set() and \ self.session_started_event.is_set(): try: sent += self.socket.send(enc_data[sent:]) -- cgit v1.2.3