diff options
author | Link Mauve <linkmauve@linkmauve.fr> | 2020-12-02 17:27:47 +0100 |
---|---|---|
committer | Link Mauve <linkmauve@linkmauve.fr> | 2020-12-02 17:27:47 +0100 |
commit | c20b72376e0ae970aeb88bc2b48dc29a586c339c (patch) | |
tree | ea163473652f3e9a150937557180e4710cb85350 /examples | |
parent | 6ff5162fb4f593d9324f0175bf4f0036cf8aee72 (diff) | |
parent | 45a14871ee17ad1be7171abd6cd3414fcf07daca (diff) | |
download | slixmpp-c20b72376e0ae970aeb88bc2b48dc29a586c339c.tar.gz slixmpp-c20b72376e0ae970aeb88bc2b48dc29a586c339c.tar.bz2 slixmpp-c20b72376e0ae970aeb88bc2b48dc29a586c339c.tar.xz slixmpp-c20b72376e0ae970aeb88bc2b48dc29a586c339c.zip |
Merge branch 'muc-update' into 'master'
XEP-0045 examples: remove wait arg to join_muc calls
See merge request poezio/slixmpp!66
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/muc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/muc.py b/examples/muc.py index e3433b8f..62e8e898 100755 --- a/examples/muc.py +++ b/examples/muc.py @@ -71,7 +71,7 @@ class MUCBot(slixmpp.ClientXMPP): self.nick, # If a room password is needed, use: # password=the_room_password, - wait=True) + ) def muc_message(self, msg): """ |