From f1ab9ab96468d4753da169968095dd08500a0f42 Mon Sep 17 00:00:00 2001 From: mathieui Date: Sat, 2 May 2020 16:47:04 +0200 Subject: Change session_start callback to async in most examples If we fetch the roster, we should probably wait until we get it back --- examples/gtalk_custom_domain.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/gtalk_custom_domain.py') diff --git a/examples/gtalk_custom_domain.py b/examples/gtalk_custom_domain.py index f055159b..c8d80e96 100755 --- a/examples/gtalk_custom_domain.py +++ b/examples/gtalk_custom_domain.py @@ -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): """ -- cgit v1.2.3