Change session_start callback to async in most examples

If we fetch the roster, we should probably wait until we get it back
This commit is contained in:
mathieui
2020-05-02 16:47:04 +02:00
parent e520ab1f5e
commit f1ab9ab964
19 changed files with 33 additions and 37 deletions

View File

@@ -58,7 +58,7 @@ class GTalkBot(slixmpp.ClientXMPP):
logging.error(err.message)
self.disconnect()
def start(self, event):
async def start(self, event):
"""
Process the session_start event.
@@ -72,7 +72,7 @@ class GTalkBot(slixmpp.ClientXMPP):
data.
"""
self.send_presence()
self.get_roster()
await self.get_roster()
def message(self, msg):
"""