From febc91dda5fe6ceff8ca519d3ac2b98584912e6a Mon Sep 17 00:00:00 2001 From: "Adrian C. (anrxc)" Date: Sat, 13 Mar 2010 03:39:54 +0100 Subject: hddtemp: minor style changes --- hddtemp.lua | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'hddtemp.lua') diff --git a/hddtemp.lua b/hddtemp.lua index 4cf8636..7c1e1e0 100644 --- a/hddtemp.lua +++ b/hddtemp.lua @@ -21,13 +21,12 @@ local function worker(format, port) if port == nil then port = 7634 end -- Get info from the hddtemp daemon - local f = io.popen("curl --connect-timeout 1 -fsm 3 telnet://127.0.0.1:" .. port) + local f = io.popen("curl --connect-timeout 1 -fsm 3 telnet://127.0.0.1:"..port) local hdd_temp = {} for line in f:lines() do - for disk, temp in string.gmatch(line, "|([%/%a%d]+)|.-|([%d]+)|[CF]+|") - do - hdd_temp["{"..disk.."}"] = tonumber(temp) + for d, t in string.gmatch(line, "|([%/%a%d]+)|.-|([%d]+)|[CF]+|") do + hdd_temp["{"..d.."}"] = tonumber(t) end end f:close() -- cgit v1.2.3