move raid widget to match new layout

This commit is contained in:
mutlusun 2017-01-25 17:55:08 +01:00 committed by Jörg Thalheim
parent 909db88b00
commit 5c7c695ea1
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ local string = {
-- Raid: provides state information for a requested RAID array
-- vicious.widgets.raid
local raid = {}
local raid_linux = {}
-- Initialize function tables
@ -57,4 +57,4 @@ local function worker(format, warg)
end
-- }}}
return setmetatable(raid, { __call = function(_, ...) return worker(...) end })
return setmetatable(raid_linux, { __call = function(_, ...) return worker(...) end })