Fixed typo in variable name

This commit is contained in:
Stefan Wagner 2016-03-20 22:20:55 +01:00
parent f63a7fd098
commit 3b9f9aa812
1 changed files with 2 additions and 2 deletions

View File

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