diff options
author | Lance Stout <lancestout@gmail.com> | 2012-06-01 14:09:14 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-06-01 14:09:14 -0700 |
commit | 856a826eeadca76b2975f3004c94fb579534d5bf (patch) | |
tree | 1bfff54b44bf03bfd9cc58c35b8f85c821da7e93 /sleekxmpp | |
parent | 387ef513d6259e268976270ac2c658dcb3cc7823 (diff) | |
download | slixmpp-856a826eeadca76b2975f3004c94fb579534d5bf.tar.gz slixmpp-856a826eeadca76b2975f3004c94fb579534d5bf.tar.bz2 slixmpp-856a826eeadca76b2975f3004c94fb579534d5bf.tar.xz slixmpp-856a826eeadca76b2975f3004c94fb579534d5bf.zip |
Fix syntax error in line continuation.
Diffstat (limited to 'sleekxmpp')
-rw-r--r-- | sleekxmpp/xmlstream/xmlstream.py | 2 |
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:]) |