move weather widget to match new layout

This commit is contained in:
mutlusun 2017-01-25 17:57:16 +01:00 committed by Jörg Thalheim
parent 785fefc13a
commit 602eada652
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ local helpers = require("vicious.helpers")
-- Weather: provides weather information for a requested station
-- vicious.widgets.weather
local weather = {}
local weather_all = {}
-- Initialize function tables
@ -91,4 +91,4 @@ local function worker(format, warg)
end
-- }}}
return setmetatable(weather, { __call = function(_, ...) return worker(...) end })
return setmetatable(weather_all, { __call = function(_, ...) return worker(...) end })