"fix" indentation to make egypt happy

unstable
David Maloney 2013-06-27 17:16:13 -05:00
parent 89faba288d
commit ea13ac48ec
1 changed files with 5 additions and 5 deletions

View File

@ -67,7 +67,7 @@ class Client
)
res = @cli.send_recv(req)
@cli.close
@cli.close
if res and [200, 401, 403, 500].include?(res.code)
resp = MessagePack.unpack(res.body)
@ -83,10 +83,10 @@ class Client
end
def close
if @cli and @cli.conn?
@cli.close
end
@cli = nil
if @cli and @cli.conn?
@cli.close
end
@cli = nil
end
end