diff options
author | Maxime Buquet <pep@bouah.net> | 2020-05-02 17:54:50 +0200 |
---|---|---|
committer | Maxime Buquet <pep@bouah.net> | 2020-05-02 17:54:50 +0200 |
commit | bf69698af1d0a7a892e510b8de543fb6e53736f0 (patch) | |
tree | 6469b68fea37af21f659a0fa30947375b694f0ec /examples/ping.py | |
parent | aa732b3c94b16c737f008c0c8d8d366fcea1e412 (diff) | |
parent | d076cef023808c3c227c3131330e24245c278e92 (diff) | |
download | slixmpp-bf69698af1d0a7a892e510b8de543fb6e53736f0.tar.gz slixmpp-bf69698af1d0a7a892e510b8de543fb6e53736f0.tar.bz2 slixmpp-bf69698af1d0a7a892e510b8de543fb6e53736f0.tar.xz slixmpp-bf69698af1d0a7a892e510b8de543fb6e53736f0.zip |
Merge branch 'add-forever-false-examples' into 'master'
Add forever=False to some examples to make them terminate
See merge request poezio/slixmpp!46
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 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) |