Problema incrível com o widget meteorológico WM

Problema incrível com o widget meteorológico WM

Estou usando o Awesome WM como gerenciador de janelas, para obter um ambiente mais flexível. Mas quando eu estava fazendo um widget de previsão do tempo, usando a biblioteca 'vicious', eu poderia ter cometido algum erro... O problema é o seguinte: sempre que eu quero obter informações meteorológicas na área de trabalho, recebo um vetor de N/A's. Não consigo reconhecer onde está realmente o problema... Ao obter informações de fontes viciosas, tudo é recebido. Talvez seja um bug de um widget vicioso? Capturas de tela (basta olhar no canto superior esquerdo da tela): tela.
Código do widget:

-- {{{ Weather widget
weatherBox = wibox({ type = "desktop", visible = true, bg = "#00000000" })
weatherBox:geometry({ x = 10, y = 25, width = 300, height = 85 })
weatherLayout = wibox.layout.fixed.horizontal()

weatherWidget = boxWidget(vicious.widgets.weather,
    function(w, data)
        local city        = data["{city}"]
        local wind_speed  = data["{windkmh}"]
        local wind        = data["{wind}"]
        local sky         = data["{sky}"]
        local humidity    = data["{humid}"]
        local temperature = data["{tempc}"]

        return 'Location: ' .. city .. '\n' ..
               'Wind: ' .. wind_speed .. ', ' .. wind_speed .. '\n' ..
               'Sky: ' .. sky .. '\n' ..
               'Humidity: ' .. humidity .. '\n' ..
               'Temerature: ' .. temperature .. ', C\n'
    end, 1, "UUEE")

weatherLayout:add(weatherWidget)
weatherBox:set_widget(weatherLayout)
-- }}}

informação relacionada