From bc637062d7518988884c36762d3d257c1c8d0aad Mon Sep 17 00:00:00 2001 From: "Adrian C. (anrxc)" Date: Thu, 30 Jul 2009 20:47:02 +0200 Subject: Coding style fixes in battery widgets. --- bat.lua | 4 ++-- batat.lua | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bat.lua b/bat.lua index 143cd24..5ea4b8d 100644 --- a/bat.lua +++ b/bat.lua @@ -37,7 +37,7 @@ function worker(format, batid) -- Check if the file wasn't found or the battery isn't present if infofile == nil or string.find(infofile, "present:[%s]+no") then - return { "/", "/", "/" } + return {"/", "/", "/"} else -- Get capacity information local capacity = string.match(infofile, "last full capacity:[%s]+([%d]+).*") @@ -73,7 +73,7 @@ function worker(format, batid) local minutesleft = math.floor((timeleft - hoursleft) * 60 ) local time = string.format("%02d:%02d", hoursleft, minutesleft) - return { state, percent, time } + return {state, percent, time} end end -- }}} diff --git a/batat.lua b/batat.lua index 8f8b95a..e8b4a14 100644 --- a/batat.lua +++ b/batat.lua @@ -38,7 +38,7 @@ function worker(format) -- Store remaining time information table.insert(battery_info, (line:match("%%,%s(.*)") or "/")) else - return { "/", "/", "/" } + return {"/", "/", "/"} end end f:close() -- cgit v1.2.3