summaryrefslogtreecommitdiff
path: root/examples/roster_browser.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/roster_browser.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/roster_browser.py')
-rwxr-xr-xexamples/roster_browser.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/examples/roster_browser.py b/examples/roster_browser.py
index 6ad8b2a4..5e27e9a2 100755
--- a/examples/roster_browser.py
+++ b/examples/roster_browser.py
@@ -51,12 +51,8 @@ class RosterBrowser(slixmpp.ClientXMPP):
event does not provide any additional
data.
"""
- future = asyncio.Future()
- def callback(result):
- future.set_result(None)
try:
- self.get_roster(callback=callback)
- await future
+ await self.get_roster()
except IqError as err:
print('Error: %s' % err.iq['error']['condition'])
except IqTimeout: