Another unwanted spaces at the end of a line.
[prosody.git] / plugins / mod_ping.lua
index 2cefff6162ebb41666aeb9bddcfc273baea5593e..e0324c80264e49988064112342b9c989636104c1 100644 (file)
@@ -1,4 +1,4 @@
--- Prosody IM v0.4
+-- Prosody IM
 -- Copyright (C) 2008-2009 Matthew Wild
 -- Copyright (C) 2008-2009 Waqas Hussain
 -- 
@@ -7,14 +7,14 @@
 --
 
 
-\r
-local st = require "util.stanza";\r
-\r
-module:add_feature("urn:xmpp:ping");\r
-\r
-module:add_iq_handler({"c2s", "s2sin"}, "urn:xmpp:ping",\r
-       function(session, stanza)\r
-               if stanza.attr.type == "get" then\r
-                       session.send(st.reply(stanza));\r
-               end\r
-       end);\r
+
+local st = require "util.stanza";
+
+module:add_feature("urn:xmpp:ping");
+
+module:add_iq_handler({"c2s", "s2sin"}, "urn:xmpp:ping",
+       function(session, stanza)
+               if stanza.attr.type == "get" then
+                       session.send(st.reply(stanza));
+               end
+       end);