diff options
author | Lance Stout <lancestout@gmail.com> | 2012-02-02 18:14:48 +0100 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-02-02 18:14:48 +0100 |
commit | f98e5a03de19d6e4af6478b902789a50fc1a3b1c (patch) | |
tree | 611ab9f36194a8699957531031329c0864cc9e6b /sleekxmpp/xmlstream/xmlstream.py | |
parent | 3ab7c8bcc39d7d377553116a5f41a3ea8c1fb436 (diff) | |
download | slixmpp-f98e5a03de19d6e4af6478b902789a50fc1a3b1c.tar.gz slixmpp-f98e5a03de19d6e4af6478b902789a50fc1a3b1c.tar.bz2 slixmpp-f98e5a03de19d6e4af6478b902789a50fc1a3b1c.tar.xz slixmpp-f98e5a03de19d6e4af6478b902789a50fc1a3b1c.zip |
Fix typo s/is_set/is_set()
Diffstat (limited to 'sleekxmpp/xmlstream/xmlstream.py')
-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 0f740474..6d27747c 100644 --- a/sleekxmpp/xmlstream/xmlstream.py +++ b/sleekxmpp/xmlstream/xmlstream.py @@ -1408,7 +1408,7 @@ class XMLStream(object): """Extract stanzas from the send queue and send them on the stream.""" try: while not self.stop.is_set(): - while not self.stop.is_set and \ + while not self.stop.is_set() and \ not self.session_started_event.is_set(): self.session_started_event.wait(timeout=1) if self.__failed_send_stanza is not None: |