diff options
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/adhoc_user.py | 2 | ||||
-rwxr-xr-x | examples/download_avatars.py | 2 | ||||
-rwxr-xr-x | examples/migrate_roster.py | 2 | ||||
-rwxr-xr-x | examples/ping.py | 2 | ||||
-rwxr-xr-x | examples/roster_browser.py | 2 | ||||
-rwxr-xr-x | examples/send_client.py | 2 | ||||
-rwxr-xr-x | examples/set_avatar.py | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/examples/adhoc_user.py b/examples/adhoc_user.py index d86dc679..931ef71c 100755 --- a/examples/adhoc_user.py +++ b/examples/adhoc_user.py @@ -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) diff --git a/examples/download_avatars.py b/examples/download_avatars.py index 02591e3e..37733b01 100755 --- a/examples/download_avatars.py +++ b/examples/download_avatars.py @@ -159,4 +159,4 @@ if __name__ == '__main__': # Connect to the XMPP server and start processing XMPP stanzas. xmpp.connect() - xmpp.process() + xmpp.process(forever=False) diff --git a/examples/migrate_roster.py b/examples/migrate_roster.py index d599b10c..be457fb3 100755 --- a/examples/migrate_roster.py +++ b/examples/migrate_roster.py @@ -104,4 +104,4 @@ def on_session2(event): new_xmpp.add_event_handler('session_start', on_session2) new_xmpp.connect() -new_xmpp.process() +new_xmpp.process(forever=False) diff --git a/examples/ping.py b/examples/ping.py index 4492d4e0..7870715c 100755 --- a/examples/ping.py +++ b/examples/ping.py @@ -109,4 +109,4 @@ if __name__ == '__main__': # Connect to the XMPP server and start processing XMPP stanzas. xmpp.connect() - xmpp.process() + xmpp.process(forever=False) diff --git a/examples/roster_browser.py b/examples/roster_browser.py index 5e27e9a2..e9365d09 100755 --- a/examples/roster_browser.py +++ b/examples/roster_browser.py @@ -134,4 +134,4 @@ if __name__ == '__main__': # Connect to the XMPP server and start processing XMPP stanzas. xmpp.connect() - xmpp.process() + xmpp.process(forever=False) diff --git a/examples/send_client.py b/examples/send_client.py index 4ec33cfa..5d5fb810 100755 --- a/examples/send_client.py +++ b/examples/send_client.py @@ -107,4 +107,4 @@ if __name__ == '__main__': # Connect to the XMPP server and start processing XMPP stanzas. xmpp.connect() - xmpp.process() + xmpp.process(forever=False) diff --git a/examples/set_avatar.py b/examples/set_avatar.py index c356290d..3188e9d8 100755 --- a/examples/set_avatar.py +++ b/examples/set_avatar.py @@ -137,4 +137,4 @@ if __name__ == '__main__': # Connect to the XMPP server and start processing XMPP stanzas. xmpp.connect() - xmpp.process() + xmpp.process(forever=False) |