Add the 'connecting' event

This commit is contained in:
Florent Le Coz 2014-08-01 04:01:31 +02:00
parent 93934c7992
commit fa21e262c7

View file

@ -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