diff options
author | mathieui <mathieui@mathieui.net> | 2012-05-06 21:10:13 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-05-06 21:10:13 +0200 |
commit | b37b7ec8e6f3f133825c0335aa67f510f4cbaf09 (patch) | |
tree | db50848a34392d2927f631b6c6e719468f57b231 /plugins/ping.py | |
parent | 97486ac09522537d169ec48f6a917dd10fa3a9ba (diff) | |
download | poezio-b37b7ec8e6f3f133825c0335aa67f510f4cbaf09.tar.gz poezio-b37b7ec8e6f3f133825c0335aa67f510f4cbaf09.tar.bz2 poezio-b37b7ec8e6f3f133825c0335aa67f510f4cbaf09.tar.xz poezio-b37b7ec8e6f3f133825c0335aa67f510f4cbaf09.zip |
Fix the ping plugin
Diffstat (limited to 'plugins/ping.py')
-rw-r--r-- | plugins/ping.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ping.py b/plugins/ping.py index 51198d39..349b7f52 100644 --- a/plugins/ping.py +++ b/plugins/ping.py @@ -18,7 +18,7 @@ class Plugin(BasePlugin): return jid = JID(arg) try: - delay = self.core.xmpp.plugin['xep_0199'].send_ping(jid=jid, block=False) + delay = self.core.xmpp.plugin['xep_0199'].send_ping(jid=jid) except: delay = None if delay is not None: |