diff options
Diffstat (limited to 'examples/adhoc_user.py')
-rwxr-xr-x | examples/adhoc_user.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/adhoc_user.py b/examples/adhoc_user.py index 8bdb675b..931ef71c 100755 --- a/examples/adhoc_user.py +++ b/examples/adhoc_user.py @@ -37,7 +37,7 @@ class CommandUserBot(slixmpp.ClientXMPP): self.add_event_handler("session_start", self.start) self.add_event_handler("message", self.message) - def start(self, event): + async def start(self, event): """ Process the session_start event. @@ -51,7 +51,7 @@ class CommandUserBot(slixmpp.ClientXMPP): data. """ self.send_presence() - self.get_roster() + await self.get_roster() # We first create a session dictionary containing: # 'next' -- the handler to execute on a successful response @@ -176,4 +176,4 @@ if __name__ == '__main__': # Connect to the XMPP server and start processing XMPP stanzas. xmpp.connect() - xmpp.process() + xmpp.process(forever=False) |