diff options
author | mathieui <mathieui@mathieui.net> | 2020-05-02 16:47:04 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2020-05-02 16:47:04 +0200 |
commit | f1ab9ab96468d4753da169968095dd08500a0f42 (patch) | |
tree | 334844e3fb6e41d852b860ac45b7a8eb16601c5a /examples/ping.py | |
parent | e520ab1f5e6f76c9476d5e109d7858d367ea2c19 (diff) | |
download | slixmpp-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/ping.py')
-rwxr-xr-x | examples/ping.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/ping.py b/examples/ping.py index cb1bb968..4492d4e0 100755 --- a/examples/ping.py +++ b/examples/ping.py @@ -51,7 +51,7 @@ class PingTest(slixmpp.ClientXMPP): data. """ self.send_presence() - self.get_roster() + await self.get_roster() try: rtt = await self['xep_0199'].ping(self.pingjid, |