summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2012-06-01 14:09:14 -0700
committerLance Stout <lancestout@gmail.com>2012-06-01 14:09:14 -0700
commit856a826eeadca76b2975f3004c94fb579534d5bf (patch)
tree1bfff54b44bf03bfd9cc58c35b8f85c821da7e93
parent387ef513d6259e268976270ac2c658dcb3cc7823 (diff)
downloadslixmpp-856a826eeadca76b2975f3004c94fb579534d5bf.tar.gz
slixmpp-856a826eeadca76b2975f3004c94fb579534d5bf.tar.bz2
slixmpp-856a826eeadca76b2975f3004c94fb579534d5bf.tar.xz
slixmpp-856a826eeadca76b2975f3004c94fb579534d5bf.zip
Fix syntax error in line continuation.
-rw-r--r--sleekxmpp/xmlstream/xmlstream.py2
1 files changed, 1 insertions, 1 deletions
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:])