#121: fixed typo
This commit is contained in:
parent
3afe2d5469
commit
c6fadc6871
2 changed files with 2 additions and 2 deletions
|
@ -79,7 +79,7 @@ local function worker(args)
|
||||||
weather.notification_text = ''
|
weather.notification_text = ''
|
||||||
for i = 1, weather_now["cnt"] do
|
for i = 1, weather_now["cnt"] do
|
||||||
local f = assert(io.popen(string.format(date_cmd, weather_now["list"][i]["dt"])))
|
local f = assert(io.popen(string.format(date_cmd, weather_now["list"][i]["dt"])))
|
||||||
day = string.gsub(f:read("a"), "\n", "")
|
day = string.gsub(f:read("*a"), "\n", "")
|
||||||
f:close()
|
f:close()
|
||||||
|
|
||||||
tmin = math.floor(weather_now["list"][i]["temp"]["min"])
|
tmin = math.floor(weather_now["list"][i]["temp"]["min"])
|
||||||
|
|
2
wiki
2
wiki
|
@ -1 +1 @@
|
||||||
Subproject commit 4021f24b33be60d2e6b4050098bd8da131648a7e
|
Subproject commit b260e938c83f1339b0b4b3b003f33f302f9a47b1
|
Loading…
Add table
Reference in a new issue