weather: fix indentation

This commit is contained in:
copycat-killer 2016-05-29 18:09:58 +02:00
parent 687b76a565
commit 6c40d0ffc7
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ local function worker(args)
local current_call = args.current_call or "curl -s 'http://api.openweathermap.org/data/2.5/weather?id=%s&units=%s&lang=%s&APPID=%s'"
local forecast_call = args.forecast_call or "curl -s 'http://api.openweathermap.org/data/2.5/forecast/daily?id=%s&units=%s&lang=%s&cnt=%s&APPID=%s'"
local city_id = args.city_id or 0 -- placeholder
local utc = args.utc or 0
local utc = args.utc or 0
local units = args.units or "metric"
local lang = args.lang or "en"
local cnt = args.cnt or 5