summaryrefslogtreecommitdiff
path: root/examples/thirdparty_auth.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2020-05-02 16:47:04 +0200
committermathieui <mathieui@mathieui.net>2020-05-02 16:47:04 +0200
commitf1ab9ab96468d4753da169968095dd08500a0f42 (patch)
tree334844e3fb6e41d852b860ac45b7a8eb16601c5a /examples/thirdparty_auth.py
parente520ab1f5e6f76c9476d5e109d7858d367ea2c19 (diff)
downloadslixmpp-f1ab9ab96468d4753da169968095dd08500a0f42.tar.gz
slixmpp-f1ab9ab96468d4753da169968095dd08500a0f42.tar.bz2
slixmpp-f1ab9ab96468d4753da169968095dd08500a0f42.tar.xz
slixmpp-f1ab9ab96468d4753da169968095dd08500a0f42.zip
Change session_start callback to async in most examples
If we fetch the roster, we should probably wait until we get it back
Diffstat (limited to 'examples/thirdparty_auth.py')
-rwxr-xr-xexamples/thirdparty_auth.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/thirdparty_auth.py b/examples/thirdparty_auth.py
index 4129fa91..b2623972 100755
--- a/examples/thirdparty_auth.py
+++ b/examples/thirdparty_auth.py
@@ -60,7 +60,7 @@ class ThirdPartyAuthBot(slixmpp.ClientXMPP):
# MUC messages and error messages.
self.add_event_handler("message", self.message)
- def start(self, event):
+ async def start(self, event):
"""
Process the session_start event.
@@ -74,7 +74,7 @@ class ThirdPartyAuthBot(slixmpp.ClientXMPP):
data.
"""
self.send_presence()
- self.get_roster()
+ await self.get_roster()
def message(self, msg):
"""