From eb2326cd7940e976c673111f1d5d3ae284c49ace Mon Sep 17 00:00:00 2001 From: Jakob Ovrum Date: Mon, 28 Jun 2010 12:58:46 +0900 Subject: [PATCH] Changed some indentation inconsistencies --- asyncoperations.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/asyncoperations.lua b/asyncoperations.lua index 4049ca9..77ed437 100644 --- a/asyncoperations.lua +++ b/asyncoperations.lua @@ -5,7 +5,7 @@ module "irc" local meta = _META function meta:send(fmt, ...) - self.socket:send(fmt:format(...) .. "\r\n") + self.socket:send(fmt:format(...) .. "\r\n") end local function sendByMethod(self, method, target, msg) @@ -32,10 +32,10 @@ function meta:join(channel, key) end function meta:part(channel) - self:send("PART %s", channel) - if self.track_users then - self.channels[channel] = nil - end + self:send("PART %s", channel) + if self.track_users then + self.channels[channel] = nil + end end function meta:trackUsers(b)