Skip to content

Commit

Permalink
weather: fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
copycat-killer committed May 29, 2016
1 parent 687b76a commit 6c40d0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion widgets/weather.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6c40d0f

Please sign in to comment.