Merge pull request #179 from stwa/patch-3

Fixed typo in variable name
This commit is contained in:
Luke Bonham 2016-03-21 10:16:54 +01:00
commit b6e357e284

View file

@ -26,11 +26,11 @@ local function worker(args)
base.widget = wibox.widget.textbox('')
function base.update()
if output ~= abase.prev then
if output ~= base.prev then
output = read_pipe(cmd)
widget = base.widget
settings()
abase.prev = output
base.prev = output
end
end