diff options
author | Florent Le Coz <louiz@louiz.org> | 2014-08-01 04:01:31 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-08-01 04:01:31 +0200 |
commit | fa21e262c77ccabceedc279d2f0b3650a60a1023 (patch) | |
tree | f407fb1a809036e3bc1fcd92e8c1f8bea03130b8 | |
parent | 93934c799233eb7ae213b1f7c8490635d5b6ee83 (diff) | |
download | slixmpp-fa21e262c77ccabceedc279d2f0b3650a60a1023.tar.gz slixmpp-fa21e262c77ccabceedc279d2f0b3650a60a1023.tar.bz2 slixmpp-fa21e262c77ccabceedc279d2f0b3650a60a1023.tar.xz slixmpp-fa21e262c77ccabceedc279d2f0b3650a60a1023.zip |
Add the 'connecting' event
-rw-r--r-- | slixmpp/xmlstream/xmlstream.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/slixmpp/xmlstream/xmlstream.py b/slixmpp/xmlstream/xmlstream.py index 3bc96118..13e88428 100644 --- a/slixmpp/xmlstream/xmlstream.py +++ b/slixmpp/xmlstream/xmlstream.py @@ -283,6 +283,7 @@ class XMLStream(object): if disable_starttls is not None: self.disable_starttls = disable_starttls + self.event("connecting") asyncio.async(self._connect_routine()) @asyncio.coroutine |