From aab20c1e294148bcee77745db047c1c299c3402a Mon Sep 17 00:00:00 2001
From: mathieui <mathieui@mathieui.net>
Date: Fri, 1 Feb 2013 17:14:13 +0100
Subject: Fix a traceback with the Ping plugin

---
 plugins/ping.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/plugins/ping.py b/plugins/ping.py
index 349b7f52..2c890563 100644
--- a/plugins/ping.py
+++ b/plugins/ping.py
@@ -1,6 +1,6 @@
 from plugin import BasePlugin
-from sleekxmpp.xmlstream.jid import JID
 from roster import roster
+from common import safeJID
 import common
 import tabs
 
@@ -16,9 +16,9 @@ class Plugin(BasePlugin):
     def command_ping(self, arg):
         if not arg:
             return
-        jid = JID(arg)
+        jid = safeJID(arg)
         try:
-            delay = self.core.xmpp.plugin['xep_0199'].send_ping(jid=jid)
+            delay = self.core.xmpp.plugin['xep_0199'].ping(jid=jid)
         except:
             delay = None
         if delay is not None:
-- 
cgit v1.2.3