aboutsummaryrefslogtreecommitdiff
path: root/hddtemp.lua
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2009-09-24 15:34:56 +0200
committerAdrian C. (anrxc) <anrxc@sysphere.org>2009-09-24 15:34:56 +0200
commita54350782e9bbd81aad3ef58a11826e3cd13134c (patch)
treec2281044157b39ab3c7f780d500d084e7d3d3d55 /hddtemp.lua
parent080d1e82f535e5a8e6fb3fbb4e1df97f7a21bf42 (diff)
downloadvicious-legacy-a54350782e9bbd81aad3ef58a11826e3cd13134c.tar.xz
General cleanup to match with HEAD
Diffstat (limited to 'hddtemp.lua')
-rw-r--r--hddtemp.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/hddtemp.lua b/hddtemp.lua
index 38bbe13..f748a80 100644
--- a/hddtemp.lua
+++ b/hddtemp.lua
@@ -22,7 +22,6 @@ local function worker(format, port)
local f = io.popen("curl --connect-timeout 1 -fsm 3 telnet://127.0.0.1:" .. port)
local hdd_temp = {}
- -- Get temperature data
for line in f:lines() do
local disk, temp = line:match("|([%/%a]+)|.*|([%d]+)|[CF]+|")