diff options
author | mathieui <mathieui@mathieui.net> | 2021-03-09 20:05:09 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2021-03-09 20:05:09 +0100 |
commit | 8a1f9bec561466008553e3d2e67ad9391f519a0c (patch) | |
tree | bd9bb6d20410d990f70b0e7f693555ea710181a4 | |
parent | 1289cf575c7a2c3db4a425b4ca4ee128098d9966 (diff) | |
parent | ad2673fd2c735dfef11eb8d13615a3eb69634dc9 (diff) | |
download | slixmpp-8a1f9bec561466008553e3d2e67ad9391f519a0c.tar.gz slixmpp-8a1f9bec561466008553e3d2e67ad9391f519a0c.tar.bz2 slixmpp-8a1f9bec561466008553e3d2e67ad9391f519a0c.tar.xz slixmpp-8a1f9bec561466008553e3d2e67ad9391f519a0c.zip |
Merge branch 'xep-0115-fix-error' into 'master'
XEP-0115: remove wrong coroutine=True argument
See merge request poezio/slixmpp!150
-rw-r--r-- | slixmpp/plugins/xep_0115/caps.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/slixmpp/plugins/xep_0115/caps.py b/slixmpp/plugins/xep_0115/caps.py index 75c96410..e469f6ff 100644 --- a/slixmpp/plugins/xep_0115/caps.py +++ b/slixmpp/plugins/xep_0115/caps.py @@ -170,7 +170,6 @@ class XEP_0115(BasePlugin): try: node = '%s#%s' % (pres['caps']['node'], ver) caps = await self.xmpp['xep_0030'].get_info(pres['from'], node, - coroutine=True, ifrom=ifrom) if isinstance(caps, Iq): |