# HG changeset patch
# User Matthew Wild <mwild1@gmail.com>
# Date 1286759012 -3600
# Node ID 386920f058089d7ea12cd7aeffbd4b95d5225809
# Parent  c95b84ed366b086260b9caad0fcb411e3fcdeecc# Parent  96efa9ee8f18741dae231273a1f3a5c21fed0e59
Merge

diff -r c95b84ed366b -r 386920f05808 plugins/adhoc.lua
--- a/plugins/adhoc.lua	Mon Oct 11 02:01:50 2010 +0100
+++ b/plugins/adhoc.lua	Mon Oct 11 02:03:32 2010 +0100
@@ -88,11 +88,9 @@
 
 -- Initial execution of a command
 function command_mt:execute()
-	io.write(":execute()\n");
 	local iq = verse.iq({ to = self.jid, type = "set" })
 		:tag("command", { xmlns = xmlns_commands, node = self.command });
 	self.stream:send_iq(iq, function (result)
-		io.write(":send_iq() response\n");
 		self:_process_response(result);
 	end);
 end