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/muc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/muc.py') diff --git a/examples/muc.py b/examples/muc.py index 469e8f49..e3433b8f 100755 --- a/examples/muc.py +++ b/examples/muc.py @@ -52,7 +52,7 @@ class MUCBot(slixmpp.ClientXMPP): self.muc_online) - def start(self, event): + async def start(self, event): """ Process the session_start event. @@ -65,7 +65,7 @@ class MUCBot(slixmpp.ClientXMPP): event does not provide any additional data. """ - self.get_roster() + await self.get_roster() self.send_presence() self.plugin['xep_0045'].join_muc(self.room, self.nick, -- cgit v1.2.3