fixing small issue on previous commit, first_line function returns string, not integer

This commit is contained in:
aajjbb 2016-01-03 12:19:31 -02:00
parent e6a4db72f5
commit bd8442c2ef
1 changed files with 2 additions and 3 deletions

View File

@ -97,9 +97,8 @@ local function worker(args)
bat_now.time = string.format("%02d:%02d", hrs, min)
local perc = first_line(bstr .. "/capacity") or (rem / tot) * 100
local perc = tonumber(first_line(bstr .. "/capacity")) or (rem / tot) * 100
local perc = (rem / tot) * 100
if perc <= 100 then
bat_now.perc = string.format("%d", perc)
elseif perc > 100 then